diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000000..4872c5afd20 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: +- package-ecosystem: npm + directory: "/" + schedule: + interval: daily + open-pull-requests-limit: 10 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 00000000000..d161cf8d4fb --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,54 @@ +name: Deploy site + +on: + push: + branches: [ master ] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + with: + persist-credentials: false + submodules: recursive + + - name: Configure GitHub Pages + uses: actions/configure-pages@v5 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Build site + run: npm run docs:build + + - name: Upload GitHub Pages artifact + uses: actions/upload-pages-artifact@v3 + with: + path: docs/.vitepress/dist + + # Deployment job + deploy: + # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages + permissions: + contents: read + pages: write + id-token: write + + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000000..ff4ee13c85b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,26 @@ +name: Test site build + +on: + pull_request: + +jobs: + doc-test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + with: + persist-credentials: false + submodules: recursive + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Build site + run: npm run docs:build diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000000..8945559b6be --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# Node.js and NPM +node_modules +npm-debug.log* +codekit-config.json + +# VitePress +docs/.vitepress/cache +docs/.vitepress/dist + +# macOS +.DS_Store diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000000..319138d7882 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "docs/.vitepress/theme"] + path = docs/.vitepress/theme + url = https://github.com/hacks-guide/vitepress-theme diff --git a/.htaccess b/.htaccess deleted file mode 100644 index 953a78e4601..00000000000 --- a/.htaccess +++ /dev/null @@ -1 +0,0 @@ -AddType video/mp4 .mp4 diff --git a/.nojekyll b/.nojekyll deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/CNAME b/CNAME deleted file mode 100644 index 4c430e79ece..00000000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -wiiu.hacks.guide \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md index 2df5a552df2..f11cc062105 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,4 @@ -ISC License - -Copyright (c) 2021, Nintendo Homebrew Staff +Copyright (c) 2024, Nintendo Homebrew Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -13,3 +11,25 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Additionally, files in `docs/.vitepress` is licensed under the following: + +Copyright (c) 2024, Nintendo Homebrew + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/crowdin.yml b/crowdin.yml index 6e18c6ab023..fe0f6a502df 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,10 +1,11 @@ files: - - source: /docs/**/*.md - ignore: - - /**/assets/ - - /**/files/ - - LICENSE.md - - README.md - - /**/navbar.md - translation: >- - /translations/%locale_with_underscore%/%original_path%/%original_file_name% + - source: /docs/*.md + translation: /docs/%locale_with_underscore%/%original_file_name% + - source: /docs/archive/tiramisu/*.md + translation: /docs/%locale_with_underscore%/archive/tiramisu/%original_file_name% + - source: /docs/aroma/*.md + translation: /docs/%locale_with_underscore%/aroma/%original_file_name% + - source: /docs/vwii/*.md + translation: /docs/%locale_with_underscore%/vwii/%original_file_name% + - source: /docs/.vitepress/i18n/strings/en_US.json + translation: /docs/.vitepress/i18n/strings/%locale_with_underscore%.json diff --git a/docs/.vitepress/config.mjs b/docs/.vitepress/config.mjs new file mode 100644 index 00000000000..3c8b955a3a3 --- /dev/null +++ b/docs/.vitepress/config.mjs @@ -0,0 +1,75 @@ +/* + Copyright (C) 2024 Nintendo Homebrew + SPDX-License-Identifier: MIT +*/ + +import { fileURLToPath, URL } from 'node:url' +import { defineConfig } from 'vitepress' + +import container from 'markdown-it-container' + +import * as i18n from './i18n' + +export default defineConfig({ + title: "Wii U Hacks Guide", + description: "A guide to hacking the Nintendo Wii U.", + head: [['link', { rel: 'icon', href: '/assets/img/favicon.ico' }]], + locales: { + root: i18n.en_US + }, + themeConfig: { + docFooter: { + prev: false, + next: false + }, + socialLinks: [ + { icon: 'discord', link: 'https://discord.gg/C29hYvh' }, + { icon: 'github', link: 'https://github.com/hacks-guide/Guide-WiiU' } + ] + }, + vite: { + resolve: { + alias: [ + { + find: /^.*\/VPHero\.vue$/, + replacement: fileURLToPath( + new URL('./theme/components/VPHero.vue', import.meta.url) + ) + }, + { + find: /^.*\/VPFooter\.vue$/, + replacement: fileURLToPath( + new URL('./theme/components/VPFooter.vue', import.meta.url) + ) + } + ] + } + }, + markdown: { + config: (md) => { + md.use(container, "tabs", { + render: (tokens, idx) => { + const token = tokens[idx]; + if (token.nesting === 1) { + return `\n`; + } else { + return `\n`; + } + } + }); + md.use(container, 'tab', { + render: (tokens, idx) => { + const token = tokens[idx]; + if (token.nesting === 1) { + let tokenData = token.info.match(/^ ?tab\s(default\s)?(.*)$/); + let isDefault = typeof tokenData[1] !== 'undefined'; + let name = tokenData[2]; + return ``; + } else { + return `\n`; + } + } + }); + } + } +}) diff --git a/docs/.vitepress/i18n/en_US.js b/docs/.vitepress/i18n/en_US.js new file mode 100644 index 00000000000..c4ca0b307a6 --- /dev/null +++ b/docs/.vitepress/i18n/en_US.js @@ -0,0 +1,84 @@ +import { en_US as localeData } from './strings' + +const sidebar_troubleshooting = { + text: localeData.troubleshooting, + items: [ + { text: localeData.pages["common-issues-fixes"], link: `/common-issues-fixes` }, + { text: localeData.pages["recover-vwii-ioses-channels"], link: `/recover-vwii-ioses-channels` } + ] +} + +const sidebar_extras = { + text: localeData.extras, + items: [ + { text: localeData.pages["block-updates"], link: `/block-updates` }, + { text: localeData.pages["unblock-updates"], link: `/unblock-updates` }, + { text: localeData.pages["dump-games"], link: `/dump-games` }, + { text: localeData.pages["uninstall-cbhc"], link: `/uninstall-cbhc` }, + { text: localeData.pages["uninstall-indexiine"], link: `/uninstall-indexiine` }, + { text: localeData.pages["uninstall-payloadloader"], link: `/uninstall-payloadloader` } + ] +} + +const sidebar_common = { + text: localeData.other, + items: [ + { text: localeData.pages["about"], link: `/about` }, + { text: localeData.pages["donations"], link: `/donations` }, + { text: localeData.pages["privacy-policy"], link: `/privacy-policy` } + ] +} + +const themeConfig = { + langMenuLabel: localeData.langMenuLabel, + darkModeSwitchLabel: localeData.darkModeSwitchLabel, + darkModeSwitchTitle: localeData.darkModeSwitchTitle, + lightModeSwitchTitle: localeData.lightModeSwitchTitle, + sidebarMenuLabel: localeData.sidebarMenuLabel, + returnToTopLabel: localeData.returnToTopLabel, + + nav: [ + { text: localeData.pages["faq"], link: `/faq` }, + sidebar_troubleshooting, + sidebar_extras + ], + sidebar: { + /* + The `/` path needs to be at the bottom as a catch all! If it is placed anywhere above, + it will select the first matching one and not parse the rest! + */ + [`/`]: [ + { + text: localeData.guide, + items: [ + { text: localeData.pages["aroma/getting-started"], link: `/aroma/getting-started` }, + { text: localeData.pages["aroma/sd-preparation"], link: `/aroma/sd-preparation` }, + { text: localeData.pages["aroma/browser-exploit"], link: `/aroma/browser-exploit` }, + { text: localeData.pages["aroma/nand-backup"], link: `/aroma/nand-backup` }, + { text: localeData.pages["aroma/installing-payloadloader"], link: `/aroma/installing-payloadloader` }, + { text: localeData.pages["aroma/autobooting"], link: `/aroma/autobooting` }, + { text: localeData.pages["finalizing-setup"], link: `/aroma/finalizing-setup` } + ] + }, + sidebar_troubleshooting, + sidebar_extras, + sidebar_common + ], + }, + footer: { + copyright: 'Copyright © 2024 Nintendo Homebrew', + items: [ + { text: localeData.pages["about"], link: `/about` }, + { text: localeData.pages["donations"], link: `/donations` }, + { text: localeData.pages["privacy-policy"], link: `/privacy-policy` } + ] + } +}; + +export default { + lang: "en", + label: localeData.language, + title: localeData.title, + description: localeData.description, + themeConfig: themeConfig +} diff --git a/docs/.vitepress/i18n/index.js b/docs/.vitepress/i18n/index.js new file mode 100644 index 00000000000..3156a8f90b7 --- /dev/null +++ b/docs/.vitepress/i18n/index.js @@ -0,0 +1,3 @@ +import en_US from './en_US' + +export { en_US } diff --git a/docs/.vitepress/i18n/strings/en_US.json b/docs/.vitepress/i18n/strings/en_US.json new file mode 100644 index 00000000000..edf0f130106 --- /dev/null +++ b/docs/.vitepress/i18n/strings/en_US.json @@ -0,0 +1,37 @@ +{ + "language": "English", + "title": "Wii U Hacks Guide", + "description": "A guide to hacking the Nintendo Wii U.", + "langMenuLabel": "Switch language", + "darkModeSwitchLabel": "Appearance", + "darkModeSwitchTitle": "Switch to dark theme", + "lightModeSwitchTitle": "Switch to light theme", + "sidebarMenuLabel": "Menu", + "returnToTopLabel": "Return to top", + + "guide": "Guide", + "extras": "Extras", + "other": "Other", + "troubleshooting": "Troubleshooting", + "pages": { + "about": "About This Guide", + "aroma/autobooting": "Autobooting Aroma", + "aroma/getting-started": "Aroma", + "aroma/browser-exploit": "Browser Exploit", + "aroma/installing-payloadloader": "Installing PayloadLoader", + "aroma/nand-backup": "Making a NAND Backup", + "aroma/sd-preparation": "SD Preparation", + "block-updates": "Blocking Updates", + "common-issues-fixes": "Common Issues & Fixes", + "donations": "Donations", + "dump-games": "Dumping Wii U Discs", + "faq": "FAQ", + "finalizing-setup": "Finalizing Setup", + "privacy-policy": "Privacy Policy", + "recover-vwii-ioses-channels": "Recover a vWii IOS/Channel", + "unblock-updates": "Unblocking Updates", + "uninstall-cbhc": "Uninstall CBHC", + "uninstall-indexiine": "Uninstall Indexiine", + "uninstall-payloadloader": "Uninstall PayloadLoader" + } +} diff --git a/docs/.vitepress/i18n/strings/index.js b/docs/.vitepress/i18n/strings/index.js new file mode 100644 index 00000000000..e986e7bca6e --- /dev/null +++ b/docs/.vitepress/i18n/strings/index.js @@ -0,0 +1,3 @@ +import en_US from './en_US' with { type: 'json' } + +export { en_US } \ No newline at end of file diff --git a/docs/.vitepress/theme b/docs/.vitepress/theme new file mode 160000 index 00000000000..798ac6841c7 --- /dev/null +++ b/docs/.vitepress/theme @@ -0,0 +1 @@ +Subproject commit 798ac6841c786e7b87f9119d27bed41679186406 diff --git a/docs/about.md b/docs/about.md new file mode 100644 index 00000000000..28ac1851b0e --- /dev/null +++ b/docs/about.md @@ -0,0 +1,50 @@ +# About This Guide + +This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) + +::: info + +**Credits** + +**Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** + +Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. + +::: + +::: tip + +[You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). + +::: + +
+ Nintendo Homebrew +
+ +::: info + +**Developer / Tool Credits** + +- **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). +- **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). +- **dragbe** and **FIX94** for d2x cIOS Installer. +- **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). +- **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). +- **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. +- **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). +- **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). +- **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). +- **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). +- **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). +- **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). +- **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. +- **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) +- **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). +- **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). +- **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). +- **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). +- **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). +- **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) + +::: diff --git a/docs/user-guide/aroma/autoboot.md b/docs/aroma/autobooting.md similarity index 90% rename from docs/user-guide/aroma/autoboot.md rename to docs/aroma/autobooting.md index 6baa150e313..bf92125812d 100644 --- a/docs/user-guide/aroma/autoboot.md +++ b/docs/aroma/autobooting.md @@ -1,11 +1,15 @@ -# Aroma {docsify-ignore-all} +--- +prev: true +next: true +--- -## Autobooting Aroma +# Autobooting Aroma Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. -### Instructions + +## Instructions 1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. 1. Press A to launch the `aroma` environment. @@ -17,17 +21,18 @@ If you don't want to autoboot Aroma, you can skip this step and follow the Setti 1. When the process has finished, press A to shutdown the console. 1. The PayloadLoader will now be launched automatically on every boot. -### Setting up PayloadLoader, Environment Loader and Aroma +## Setting up PayloadLoader, Environment Loader and Aroma + Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. + 1. Launch the EnvironmentLoader. - If you are autobooting the PayloadLoader, simply turn on your Wii U. - If you skipped the autobooting steps, launch the Health and Safety Information app. 1. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. -![](../docs/assets/img/guide/EL_Highlight.png) + ![](/assets/img/guide/EL_Highlight.png) - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. 1. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. -![](../docs/assets/img/guide/ABM_Highlight.png) - + ![](/assets/img/guide/ABM_Highlight.png) 1. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. diff --git a/docs/user-guide/aroma/browser-exploit.md b/docs/aroma/browser-exploit.md similarity index 71% rename from docs/user-guide/aroma/browser-exploit.md rename to docs/aroma/browser-exploit.md index 599d68d2021..388bf2d7d24 100644 --- a/docs/user-guide/aroma/browser-exploit.md +++ b/docs/aroma/browser-exploit.md @@ -1,19 +1,23 @@ -# Aroma {docsify-ignore-all} +--- +prev: true +next: true +--- -## Browser Exploit +# Browser Exploit Make sure your Wii U has internet access for this step. -### Instructions +## Instructions 1. Take the SD Card out of your computer and plug it into your Wii U console. 1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. 1. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. -![](../docs/assets/img/guide/PLL.png) +![](/assets/img/guide/PLL.png) - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. +::: tip -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). - +If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). +::: diff --git a/docs/user-guide/aroma/finalizing-setup.md b/docs/aroma/finalizing-setup.md similarity index 90% rename from docs/user-guide/aroma/finalizing-setup.md rename to docs/aroma/finalizing-setup.md index a63fd3de544..0a1cbd7322b 100644 --- a/docs/user-guide/aroma/finalizing-setup.md +++ b/docs/aroma/finalizing-setup.md @@ -1,12 +1,18 @@ -# Aroma {docsify-ignore-all} +--- +prev: true +--- -## Finalizing Setup +# Finalizing Setup Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. -### Additional Homebrew Apps +## Additional Homebrew Apps -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. +::: tip + +All Homebrew applications are loaded from the Wii U Menu on Aroma. + +::: - **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. - **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. @@ -22,7 +28,7 @@ Now that PayloadLoader, Environment Loader and Aroma are installed, we are going 1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. 1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. -### Recommended Plugins +## Recommended Plugins | Name | Description | Installation Instructions | | ---- | ----------- | ------------ | @@ -31,13 +37,17 @@ Now that PayloadLoader, Environment Loader and Aroma are installed, we are going | [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | | [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -### Pretendo Network +## Pretendo Network Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). -### Booting Tiramisu (optional) +## Booting Tiramisu (optional) + +::: warning + +Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. +::: However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: diff --git a/docs/user-guide/aroma/getting-started.md b/docs/aroma/getting-started.md similarity index 93% rename from docs/user-guide/aroma/getting-started.md rename to docs/aroma/getting-started.md index a9973bb10ed..676ab0f23e6 100644 --- a/docs/user-guide/aroma/getting-started.md +++ b/docs/aroma/getting-started.md @@ -1,35 +1,39 @@ -# Aroma {docsify-ignore-all} +--- +next: true +--- + +# Aroma Aroma is a work-in-progress environment and the successor to Tiramisu. -### What is Aroma? +## What is Aroma? Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). -### What can I do with Aroma? +## What can I do with Aroma? For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. -#### Modules +### Modules Aroma supports modules which, unlike setup modules, always run in the background. This allows for further extending the functionality of the console. -#### Plugins +### Plugins Plugins, similarly to modules, are also running in the background. They can enhance the experience of the console by changing and providing additional features. Plugins can be configured using a configuration menu, which can be opened using a button combination. -#### Wii U Homebrew Bundles +### Wii U Homebrew Bundles Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. -### What are the limitations? +## What are the limitations? Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. diff --git a/docs/user-guide/aroma/installing-payloadloader.md b/docs/aroma/installing-payloadloader.md similarity index 65% rename from docs/user-guide/aroma/installing-payloadloader.md rename to docs/aroma/installing-payloadloader.md index 53f383c993a..90a22c7b8ac 100644 --- a/docs/user-guide/aroma/installing-payloadloader.md +++ b/docs/aroma/installing-payloadloader.md @@ -1,27 +1,38 @@ -# Aroma {docsify-ignore-all} +--- +prev: true +next: true +--- -## Installing PayloadLoader +# Installing PayloadLoader Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. +::: danger -### Instructions +A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../uninstall-payloadloader) to remove the PayloadLoader. -?> If you're already booted into Aroma, you may skip to step 5. +::: + +## Instructions + +::: tip + +If you're already booted into Aroma, you may skip to step 5. + +::: 1. Take the SD Card out of your PC and plug it into your Wii U. 1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. 1. Press A to launch the `aroma` environment. -![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. -![](../docs/assets/img/guide/Warn.png) + ![](/assets/img/guide/EL.png) + - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. + ![](/assets/img/guide/Warn.png) 1. Press A to launch the Wii U Menu. -![](../docs/assets/img/guide/ABM.png) + ![](/assets/img/guide/ABM.png) 1. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. -![](../docs/assets/img/guide/PLLI.png) + ![](/assets/img/guide/PLLI.png) 1. Press the A button to check if you can install the PayloadLoader. - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. 1. Press the A button to select `Install / Update`. diff --git a/docs/user-guide/aroma/nand-backup.md b/docs/aroma/nand-backup.md similarity index 53% rename from docs/user-guide/aroma/nand-backup.md rename to docs/aroma/nand-backup.md index 8fa59e5ade9..cca72ca6393 100644 --- a/docs/user-guide/aroma/nand-backup.md +++ b/docs/aroma/nand-backup.md @@ -1,20 +1,33 @@ -# Aroma {docsify-ignore-all} +--- +prev: true +next: true +--- -## Making a NAND Backup +# Making a NAND Backup In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. -### Instructions +## Instructions -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. +::: tip -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills. -
However, making a NAND Backup is **always** useful, so please do not skip it. -
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. +The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. + +::: + +::: tip + +Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills. + +However, making a NAND Backup is **always** useful, so please do not skip it. + +Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. + +::: 1. Navigate to `nanddumper` using the GamePad and press A to launch it. 1. Use the Wii U GamePad's D-Pad to enter the following configuration: -![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) + ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](/assets/img/guide/NAND.png) - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. 1. Press the A button to start the dumping process. 1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. diff --git a/docs/user-guide/aroma/sd-preparation.md b/docs/aroma/sd-preparation.md similarity index 63% rename from docs/user-guide/aroma/sd-preparation.md rename to docs/aroma/sd-preparation.md index 010e07145d5..7b91091373a 100644 --- a/docs/user-guide/aroma/sd-preparation.md +++ b/docs/aroma/sd-preparation.md @@ -1,41 +1,55 @@ -# Aroma {docsify-ignore-all} +--- +prev: true +next: true +--- -## SD Preparation +# SD Preparation We will now place the required Aroma files on the SD Card. -?> **Notice** - Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. - **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. +::: warning -### Instructions +Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. +**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. + +::: + +## Instructions 1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - Read through the steps and click on the checkboxes. - ![](../docs/assets/img/guide/Aroma_Box.png) + ![](/assets/img/guide/Aroma_Box.png) - Click on `Download Payloads` and `Download Base Aroma`. - ![](../docs/assets/img/guide/Aroma_DL.png) + ![](/assets/img/guide/Aroma_DL.png) 1. Insert your Wii U's SD Card into your PC. 1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - The `wiiu` folders should be merged if not done automatically. -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. +::: tip + +If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. + +::: + +::: tip -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. +If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. + +::: ---------- + Extracting the contents of the zip to the root is done like so.
-### SD Card Layout {docsify-ignore} +## SD Card Layout -
-Click here to show the final SD Card layout. +::: details Click here to show the final SD Card layout. ``` 💾sd: @@ -69,6 +83,10 @@ Extracting the contents of the zip to the root is done like so. ┗ 📜payload.elf ``` -
+::: + +::: tip + +If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) +::: diff --git a/docs/assets/css/dark.css b/docs/assets/css/dark.css deleted file mode 100644 index 4ad2e882607..00000000000 --- a/docs/assets/css/dark.css +++ /dev/null @@ -1,2319 +0,0 @@ -.github-corner { - position: absolute; - z-index: 40; - top: 0; - right: 0; - border-bottom: 0; - text-decoration: none -} - -.github-corner svg { - height: 70px; - width: 70px; - fill: var(--theme-color); - color: var(--base-background-color) -} - -.github-corner:hover .octo-arm { - -webkit-animation: octocat-wave 560ms ease-in-out; - animation: octocat-wave 560ms ease-in-out -} - -@-webkit-keyframes octocat-wave { - 0%, - 100% { - -webkit-transform: rotate(0); - transform: rotate(0) - } - 20%, - 60% { - -webkit-transform: rotate(-25deg); - transform: rotate(-25deg) - } - 40%, - 80% { - -webkit-transform: rotate(10deg); - transform: rotate(10deg) - } -} - -@keyframes octocat-wave { - 0%, - 100% { - -webkit-transform: rotate(0); - transform: rotate(0) - } - 20%, - 60% { - -webkit-transform: rotate(-25deg); - transform: rotate(-25deg) - } - 40%, - 80% { - -webkit-transform: rotate(10deg); - transform: rotate(10deg) - } -} - -.progress { - position: fixed; - z-index: 60; - top: 0; - left: 0; - right: 0; - height: 3px; - width: 0; - background-color: var(--theme-color); - transition: width var(--duration-fast), opacity calc(var(--duration-fast) * 2) -} - -body.ready-transition:after, -body.ready-transition>*:not(.progress) { - opacity: 0; - transition: opacity var(--spinner-transition-duration) -} - -body.ready-transition:after { - content: ''; - position: absolute; - z-index: 1000; - top: calc(50% - (var(--spinner-size) / 2)); - left: calc(50% - (var(--spinner-size) / 2)); - height: var(--spinner-size); - width: var(--spinner-size); - border: var(--spinner-track-width, 0) solid var(--spinner-track-color); - border-left-color: var(--theme-color); - border-left-color: var(--theme-color); - border-radius: 50%; - -webkit-animation: spinner var(--duration-slow) infinite linear; - animation: spinner var(--duration-slow) infinite linear -} - -body.ready-transition.ready-spinner:after { - opacity: 1 -} - -body.ready-transition.ready-fix:after { - opacity: 0 -} - -body.ready-transition.ready-fix>*:not(.progress) { - opacity: 1; - transition-delay: var(--spinner-transition-duration) -} - -@-webkit-keyframes spinner { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg) - } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -@keyframes spinner { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg) - } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -*, -*:before, -*:after { - box-sizing: inherit; - font-size: inherit; - -webkit-overflow-scrolling: touch; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); - -webkit-text-size-adjust: none; - -webkit-touch-callout: none -} - -:root { - box-sizing: border-box; - background-color: var(--base-background-color); - font-size: var(--base-font-size); - font-weight: var(--base-font-weight); - line-height: var(--base-line-height); - letter-spacing: var(--base-letter-spacing); - color: var(--base-color); - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-smoothing: antialiased -} - -html, -button, -input, -optgroup, -select, -textarea { - font-family: var(--base-font-family) -} - -button, -input, -optgroup, -select, -textarea { - font-size: 100%; - margin: 0 -} - -a { - text-decoration: none; - -webkit-text-decoration-skip: ink; - text-decoration-skip-ink: auto -} - -body { - margin: 0 -} - -hr { - height: 0; - margin: 2em 0; - border: none; - border-bottom: var(--hr-border, 0) -} - -img { - border: 0 -} - -main { - display: block -} - -main.hidden { - display: none -} - -mark { - background: var(--mark-background); - color: var(--mark-color) -} - -pre { - font-family: var(--pre-font-family); - font-size: var(--pre-font-size); - font-weight: var(--pre-font-weight); - line-height: var(--pre-line-height) -} - -small { - display: inline-block; - font-size: var(--small-font-size) -} - -strong { - font-weight: var(--strong-font-weight); - color: var(--strong-color, currentColor) -} - -sub, -sup { - font-size: var(--subsup-font-size); - line-height: 0; - position: relative; - vertical-align: baseline -} - -sub { - bottom: -0.25em -} - -sup { - top: -0.5em -} - -body:not([data-platform^="Mac"]) * { - scrollbar-color: hsla(var(--mono-hue), var(--mono-saturation), 50%, 0.3) hsla(var(--mono-hue), var(--mono-saturation), 50%, 0.1); - scrollbar-width: thin -} - -body:not([data-platform^="Mac"]) *::-webkit-scrollbar { - width: 5px; - height: 5px -} - -body:not([data-platform^="Mac"]) *::-webkit-scrollbar-thumb { - background: hsla(var(--mono-hue), var(--mono-saturation), 50%, 0.3) -} - -body:not([data-platform^="Mac"]) *::-webkit-scrollbar-track { - background: hsla(var(--mono-hue), var(--mono-saturation), 50%, 0.1) -} - -::selection { - background: var(--selection-color) -} - -.emoji { - height: var(--emoji-size); - vertical-align: middle -} - -.task-list-item { - list-style: none -} - -.task-list-item input { - margin-right: 0.5em; - margin-left: 0; - vertical-align: 0.075em -} - -.markdown-section code[class*="lang-"], -.markdown-section pre[data-lang] { - font-family: var(--code-font-family); - font-size: var(--code-font-size); - font-weight: var(--code-font-weight); - letter-spacing: normal; - line-height: var(--code-block-line-height); - -moz-tab-size: var(--code-tab-size); - -o-tab-size: var(--code-tab-size); - tab-size: var(--code-tab-size); - text-align: left; - white-space: pre; - word-spacing: normal; - word-wrap: normal; - word-break: normal; - -webkit-hyphens: none; - -ms-hyphens: none; - hyphens: none -} - -.markdown-section pre[data-lang] { - position: relative; - overflow: hidden; - margin: var(--code-block-margin); - padding: 0; - border-radius: var(--code-block-border-radius) -} - -.markdown-section pre[data-lang]::after { - content: attr(data-lang); - position: absolute; - top: 0.75em; - right: 0.75em; - opacity: 0.6; - color: inherit; - font-size: var(--font-size-s); - line-height: 1 -} - -.markdown-section pre[data-lang] code { - display: block; - overflow: auto; - padding: var(--code-block-padding) -} - -code[class*="lang-"], -pre[data-lang] { - color: var(--code-theme-text) -} - -pre[data-lang]::selection, -pre[data-lang]::selection, -code[class*="lang-"]::selection, -code[class*="lang-"]::selection { - background: var(--code-theme-selection, var(--selection-color)) -} - -:not(pre)>code[class*="lang-"], -pre[data-lang] { - background: var(--code-theme-background) -} - -.namespace { - opacity: 0.7 -} - -.token.comment, -.token.prolog, -.token.doctype, -.token.cdata { - color: var(--code-theme-comment) -} - -.token.punctuation { - color: var(--code-theme-punctuation) -} - -.token.property, -.token.tag, -.token.boolean, -.token.number, -.token.constant, -.token.symbol, -.token.deleted { - color: var(--code-theme-tag) -} - -.token.selector, -.token.attr-name, -.token.string, -.token.char, -.token.builtin, -.token.inserted { - color: var(--code-theme-selector) -} - -.token.operator, -.token.entity, -.token.url, -.language-css .token.string, -.style .token.string { - color: var(--code-theme-operator) -} - -.token.atrule, -.token.attr-value, -.token.keyword { - color: var(--code-theme-keyword) -} - -.token.function { - color: var(--code-theme-function) -} - -.token.regex, -.token.important, -.token.variable { - color: var(--code-theme-variable) -} - -.token.important, -.token.bold { - font-weight: bold -} - -.token.italic { - font-style: italic -} - -.token.entity { - cursor: help -} - -.markdown-section { - position: relative; - max-width: var(--content-max-width); - margin: 0 auto; - padding: 2rem 45px -} - -.app-nav:not(:empty) ~ main .markdown-section { - padding-top: 3.5rem -} - -.markdown-section figure, -.markdown-section p, -.markdown-section ol, -.markdown-section ul { - margin: 1em 0 -} - -.markdown-section ol, -.markdown-section ul { - padding-left: 1.5rem -} - -.markdown-section ol ol, -.markdown-section ol ul, -.markdown-section ul ol, -.markdown-section ul ul { - margin-top: 0.15rem; - margin-bottom: 0.15rem -} - -.markdown-section a { - border-bottom: var(--link-border-bottom); - color: var(--link-color); - -webkit-text-decoration: var(--link-text-decoration); - text-decoration: var(--link-text-decoration); - -webkit-text-decoration-color: var(--link-text-decoration-color); - text-decoration-color: var(--link-text-decoration-color) -} - -.markdown-section a:hover { - border-bottom: var(--link-border-bottom--hover, var(--link-border-bottom, 0)); - color: var(--link-color--hover, var(--link-color)); - -webkit-text-decoration: var(--link-text-decoration--hover, var(--link-text-decoration)); - text-decoration: var(--link-text-decoration--hover, var(--link-text-decoration)); - -webkit-text-decoration-color: var(--link-text-decoration-color--hover, var(--link-text-decoration-color)); - text-decoration-color: var(--link-text-decoration-color--hover, var(--link-text-decoration-color)) -} - -.markdown-section a.anchor { - border-bottom: 0; - color: inherit; - text-decoration: none -} - -.markdown-section a.anchor:hover { - text-decoration: underline -} - -.markdown-section blockquote { - overflow: visible; - margin: 2em 0; - padding: 1.5em; - border-width: var(--blockquote-border-width, 0); - border-style: var(--blockquote-border-style); - border-color: var(--blockquote-border-color); - border-radius: var(--blockquote-border-radius); - background: var(--blockquote-background); - color: var(--blockquote-color); - font-family: var(--blockquote-font-family); - font-size: var(--blockquote-font-size); - font-style: var(--blockquote-font-style); - font-weight: var(--blockquote-font-weight); - quotes: "“" "”" "‘" "’" -} - -.markdown-section blockquote em { - font-family: var(--blockquote-em-font-family); - font-size: var(--blockquote-em-font-size); - font-style: var(--blockquote-em-font-style); - font-weight: var(--blockquote-em-font-weight) -} - -.markdown-section blockquote p:first-child { - margin-top: 0 -} - -.markdown-section blockquote p:first-child:before, -.markdown-section blockquote p:first-child:after { - color: var(--blockquote-quotes-color); - font-family: var(--blockquote-quotes-font-family); - font-size: var(--blockquote-quotes-font-size); - line-height: 0 -} - -.markdown-section blockquote p:first-child:before { - content: var(--blockquote-quotes-open); - margin-right: 0.15em; - vertical-align: -0.45em -} - -.markdown-section blockquote p:first-child:after { - content: var(--blockquote-quotes-close); - margin-left: 0.15em; - vertical-align: -0.55em -} - -.markdown-section blockquote p:last-child { - margin-bottom: 0 -} - -.markdown-section code { - font-family: var(--code-font-family); - font-size: var(--code-font-size); - font-weight: var(--code-font-weight); - line-height: inherit -} - -.markdown-section code:not([class*="lang-"]):not([class*="language-"]) { - margin: var(--code-inline-margin); - padding: var(--code-inline-padding); - border-radius: var(--code-inline-border-radius); - background: var(--code-inline-background); - color: var(--code-inline-color, currentColor); - white-space: nowrap -} - -.markdown-section h1:first-child, -.markdown-section h2:first-child, -.markdown-section h3:first-child, -.markdown-section h4:first-child, -.markdown-section h5:first-child, -.markdown-section h6:first-child { - margin-top: 0 -} - -.markdown-section h1+h2, -.markdown-section h1+h3, -.markdown-section h1+h4, -.markdown-section h1+h5, -.markdown-section h1+h6, -.markdown-section h2+h3, -.markdown-section h2+h4, -.markdown-section h2+h5, -.markdown-section h2+h6, -.markdown-section h3+h4, -.markdown-section h3+h5, -.markdown-section h3+h6, -.markdown-section h4+h5, -.markdown-section h4+h6, -.markdown-section h5+h6 { - margin-top: 1rem -} - -.markdown-section h1 { - margin: var(--heading-h1-margin, var(--heading-margin)); - padding: var(--heading-h1-padding, var(--heading-padding)); - border-width: var(--heading-h1-border-width, 0); - border-style: var(--heading-h1-border-style); - border-color: var(--heading-h1-border-color); - font-family: var(--heading-h1-font-family, var(--heading-font-family)); - font-size: var(--heading-h1-font-size); - font-weight: var(--heading-h1-font-weight, var(--heading-font-weight)); - line-height: var(--base-line-height); - color: var(--heading-h1-color, var(--heading-color)) -} - -.markdown-section h2 { - margin: var(--heading-h2-margin, var(--heading-margin)); - padding: var(--heading-h2-padding, var(--heading-padding)); - border-width: var(--heading-h2-border-width, 0); - border-style: var(--heading-h2-border-style); - border-color: var(--heading-h2-border-color); - font-family: var(--heading-h2-font-family, var(--heading-font-family)); - font-size: var(--heading-h2-font-size); - font-weight: var(--heading-h2-font-weight, var(--heading-font-weight)); - line-height: var(--base-line-height); - color: var(--heading-h2-color, var(--heading-color)) -} - -.markdown-section h3 { - margin: var(--heading-h3-margin, var(--heading-margin)); - padding: var(--heading-h3-padding, var(--heading-padding)); - border-width: var(--heading-h3-border-width, 0); - border-style: var(--heading-h3-border-style); - border-color: var(--heading-h3-border-color); - font-family: var(--heading-h3-font-family, var(--heading-font-family)); - font-size: var(--heading-h3-font-size); - font-weight: var(--heading-h3-font-weight, var(--heading-font-weight)); - color: var(--heading-h3-color, var(--heading-color)) -} - -.markdown-section h4 { - margin: var(--heading-h4-margin, var(--heading-margin)); - padding: var(--heading-h4-padding, var(--heading-padding)); - border-width: var(--heading-h4-border-width, 0); - border-style: var(--heading-h4-border-style); - border-color: var(--heading-h4-border-color); - font-family: var(--heading-h4-font-family, var(--heading-font-family)); - font-size: var(--heading-h4-font-size); - font-weight: var(--heading-h4-font-weight, var(--heading-font-weight)); - color: var(--heading-h4-color, var(--heading-color)) -} - -.markdown-section h5 { - margin: var(--heading-h5-margin, var(--heading-margin)); - padding: var(--heading-h5-padding, var(--heading-padding)); - border-width: var(--heading-h5-border-width, 0); - border-style: var(--heading-h5-border-style); - border-color: var(--heading-h5-border-color); - font-family: var(--heading-h5-font-family, var(--heading-font-family)); - font-size: var(--heading-h5-font-size); - font-weight: var(--heading-h5-font-weight, var(--heading-font-weight)); - color: var(--heading-h5-color, var(--heading-color)) -} - -.markdown-section h6 { - margin: var(--heading-h6-margin, var(--heading-margin)); - padding: var(--heading-h6-padding, var(--heading-padding)); - border-width: var(--heading-h6-border-width, 0); - border-style: var(--heading-h6-border-style); - border-color: var(--heading-h6-border-color); - font-family: var(--heading-h6-font-family, var(--heading-font-family)); - font-size: var(--heading-h6-font-size); - font-weight: var(--heading-h6-font-weight, var(--heading-font-weight)); - color: var(--heading-h6-color, var(--heading-color)) -} - -.markdown-section iframe { - margin: 1em 0 -} - -.markdown-section img { - max-width: 100% -} - -.markdown-section kbd { - display: inline-block; - min-width: var(--kbd-min-width); - margin: var(--kbd-margin); - padding: var(--kbd-padding); - border: var(--kbd-border); - border-radius: var(--kbd-border-radius); - background: var(--kbd-background); - font-family: inherit; - font-size: var(--kbd-font-size); - text-align: center; - letter-spacing: 0; - line-height: 1; - color: var(--kbd-color) -} - -.markdown-section kbd+kbd { - margin-left: -0.15em -} - -.markdown-section table { - display: block; - overflow: auto; - margin: 1rem 0; - border-spacing: 0; - border-collapse: collapse -} - -.markdown-section th, -.markdown-section td { - padding: var(--table-cell-padding) -} - -.markdown-section th:not([align]) { - text-align: left -} - -.markdown-section thead { - border-color: var(--table-head-border-color); - border-style: solid; - border-width: var(--table-head-border-width, 0); - background: var(--table-head-background) -} - -.markdown-section th { - font-weight: var(--table-head-font-weight); - color: var(--strong-color) -} - -.markdown-section td { - border-color: var(--table-cell-border-color); - border-style: solid; - border-width: var(--table-cell-border-width, 0) -} - -.markdown-section tbody { - border-color: var(--table-body-border-color); - border-style: solid; - border-width: var(--table-body-border-width, 0) -} - -.markdown-section tbody tr:nth-child(odd) { - background: var(--table-row-odd-background) -} - -.markdown-section tbody tr:nth-child(even) { - background: var(--table-row-even-background) -} - -.markdown-section>ul .task-list-item { - margin-left: -1.25em -} - -.markdown-section>ul .task-list-item .task-list-item { - margin-left: 0 -} - -.markdown-section .table-wrapper table { - display: table; - width: 100% -} - -.markdown-section .table-wrapper td::before { - display: none -} - -@media (max-width: 30em) { - .markdown-section .table-wrapper tbody, - .markdown-section .table-wrapper tr, - .markdown-section .table-wrapper td { - display: block - } - .markdown-section .table-wrapper th, - .markdown-section .table-wrapper td { - border: none - } - .markdown-section .table-wrapper thead { - display: none - } - .markdown-section .table-wrapper tr { - border-color: var(--table-cell-border-color); - border-style: solid; - border-width: var(--table-cell-border-width, 0); - padding: var(--table-cell-padding) - } - .markdown-section .table-wrapper tr:not(:last-child) { - border-bottom: 0 - } - .markdown-section .table-wrapper td { - display: flex; - padding: 0.15em 0 - } - .markdown-section .table-wrapper td::before { - display: block; - min-width: 8em; - max-width: 8em; - font-weight: bold; - text-align: left - } -} - -.markdown-section .tip, -.markdown-section .warn { - position: relative; - margin: 2em 0; - padding: var(--notice-padding); - border-width: var(--notice-border-width, 0); - border-style: var(--notice-border-style); - border-color: var(--notice-border-color); - border-radius: var(--notice-border-radius); - background: var(--notice-background); - font-family: var(--notice-font-family); - font-weight: var(--notice-font-weight); - color: var(--notice-color) -} - -.markdown-section .tip:before, -.markdown-section .warn:before { - display: inline-block; - position: var(--notice-before-position, relative); - top: var(--notice-before-top); - left: var(--notice-before-left); - height: var(--notice-before-height); - width: var(--notice-before-width); - margin: var(--notice-before-margin); - padding: var(--notice-before-padding); - border-radius: var(--notice-before-border-radius); - line-height: var(--notice-before-line-height); - font-family: var(--notice-before-font-family); - font-size: var(--notice-before-font-size); - font-weight: var(--notice-before-font-weight); - text-align: center -} - -.markdown-section .tip { - border-width: var(--notice-important-border-width, var(--notice-border-width, 0)); - border-style: var(--notice-important-border-style, var(--notice-border-style)); - border-color: var(--notice-important-border-color, var(--notice-border-color)); - background: var(--notice-important-background, var(--notice-background)); - color: var(--notice-important-color, var(--notice-color)) -} - -.markdown-section .tip:before { - content: var(--notice-important-before-content, var(--notice-before-content)); - background: var(--notice-important-before-background, var(--notice-before-background)); - color: var(--notice-important-before-color, var(--notice-before-color)) -} - -.markdown-section .warn { - border-width: var(--notice-tip-border-width, var(--notice-border-width, 0)); - border-style: var(--notice-tip-border-style, var(--notice-border-style)); - border-color: var(--notice-tip-border-color, var(--notice-border-color)); - background: var(--notice-tip-background, var(--notice-background)); - color: var(--notice-tip-color, var(--notice-color)) -} - -.markdown-section .warn:before { - content: var(--notice-tip-before-content, var(--notice-before-content)); - background: var(--notice-tip-before-background, var(--notice-before-background)); - color: var(--notice-tip-before-color, var(--notice-before-color)) -} - -.cover { - display: none; - position: relative; - z-index: 20; - min-height: 100vh; - flex-direction: column; - align-items: center; - justify-content: center; - padding: calc(var(--cover-border-inset, 0px) + var(--cover-border-width, 0px)); - color: var(--cover-color); - text-align: var(--cover-text-align) -} - -@media screen and (-ms-high-contrast: active), -screen and (-ms-high-contrast: none) { - .cover { - height: 100vh - } -} - -.cover:before, -.cover:after { - content: ''; - position: absolute -} - -.cover:before { - top: 0; - bottom: 0; - left: 0; - right: 0; - background-blend-mode: var(--cover-background-blend-mode); - background-color: var(--cover-background-color); - background-image: var(--cover-background-image); - background-position: var(--cover-background-position); - background-repeat: var(--cover-background-repeat); - background-size: var(--cover-background-size) -} - -.cover:after { - top: var(--cover-border-inset, 0); - bottom: var(--cover-border-inset, 0); - left: var(--cover-border-inset, 0); - right: var(--cover-border-inset, 0); - border-width: var(--cover-border-width, 0); - border-style: solid; - border-color: var(--cover-border-color) -} - -.cover a { - border-bottom: var(--cover-link-border-bottom); - color: var(--cover-link-color); - -webkit-text-decoration: var(--cover-link-text-decoration); - text-decoration: var(--cover-link-text-decoration); - -webkit-text-decoration-color: var(--cover-link-text-decoration-color); - text-decoration-color: var(--cover-link-text-decoration-color) -} - -.cover a:hover { - border-bottom: var(--cover-link-border-bottom--hover, var(--cover-link-border-bottom)); - color: var(--cover-link-color--hover, var(--cover-link-color)); - -webkit-text-decoration: var(--cover-link-text-decoration--hover, var(--cover-link-text-decoration)); - text-decoration: var(--cover-link-text-decoration--hover, var(--cover-link-text-decoration)); - -webkit-text-decoration-color: var(--cover-link-text-decoration-color--hover, var(--cover-link-text-decoration-color)); - text-decoration-color: var(--cover-link-text-decoration-color--hover, var(--cover-link-text-decoration-color)) -} - -.cover h1 { - color: var(--cover-heading-color); - position: relative; - margin: 0; - font-size: var(--cover-heading-font-size); - font-weight: var(--cover-heading-font-weight); - line-height: 1.2 -} - -.cover h1 a, -.cover h1 a:hover { - display: block; - border-bottom: none; - color: inherit; - text-decoration: none -} - -.cover h1 small { - position: absolute; - bottom: 0; - margin-left: 0.5em -} - -.cover h1 span { - font-size: calc(var(--cover-heading-font-size-min) * 1px) -} - -@media (min-width: 26em) { - .cover h1 span { - font-size: calc((var(--cover-heading-font-size-min) * 1px) + (var(--cover-heading-font-size-max) - var(--cover-heading-font-size-min)) * ((100vw - 420px) / (1024 - 420))) - } -} - -@media (min-width: 64em) { - .cover h1 span { - font-size: calc(var(--cover-heading-font-size-max) * 1px) - } -} - -.cover blockquote { - margin: 0; - color: var(--cover-blockquote-color); - font-size: var(--cover-blockquote-font-size) -} - -.cover blockquote a { - color: inherit -} - -.cover ul { - padding: 0; - list-style-type: none -} - -.cover .cover-main { - position: relative; - z-index: 1; - max-width: var(--cover-max-width); - margin: var(--cover-margin); - padding: 0 45px -} - -.cover .cover-main>p:last-child { - margin: 1.25em -.25em -} - -.cover .cover-main>p:last-child a { - display: block; - margin: .375em .25em; - padding: var(--cover-button-padding); - border: var(--cover-button-border); - border-radius: var(--cover-button-border-radius); - box-shadow: var(--cover-button-box-shadow); - background: var(--cover-button-background); - text-align: center; - -webkit-text-decoration: var(--cover-button-text-decoration); - text-decoration: var(--cover-button-text-decoration); - -webkit-text-decoration-color: var(--cover-button-text-decoration-color); - text-decoration-color: var(--cover-button-text-decoration-color); - color: var(--cover-button-color); - white-space: nowrap; - transition: var(--cover-button-transition) -} - -.cover .cover-main>p:last-child a:hover { - border: var(--cover-button-border--hover, var(--cover-button-border)); - box-shadow: var(--cover-button-box-shadow--hover, var(--cover-button-box-shadow)); - background: var(--cover-button-background--hover, var(--cover-button-background)); - -webkit-text-decoration: var(--cover-button-text-decoration--hover, var(--cover-button-text-decoration)); - text-decoration: var(--cover-button-text-decoration--hover, var(--cover-button-text-decoration)); - -webkit-text-decoration-color: var(--cover-button-text-decoration-color--hover, var(--cover-button-text-decoration-color)); - text-decoration-color: var(--cover-button-text-decoration-color--hover, var(--cover-button-text-decoration-color)); - color: var(--cover-button-color--hover, var(--cover-button-color)) -} - -.cover .cover-main>p:last-child a:first-child { - border: var(--cover-button-primary-border, var(--cover-button-border)); - box-shadow: var(--cover-button-primary-box-shadow, var(--cover-button-box-shadow)); - background: var(--cover-button-primary-background, var(--cover-button-background)); - -webkit-text-decoration: var(--cover-button-primary-text-decoration, var(--cover-button-text-decoration)); - text-decoration: var(--cover-button-primary-text-decoration, var(--cover-button-text-decoration)); - -webkit-text-decoration-color: var(--cover-button-primary-text-decoration-color, var(--cover-button-text-decoration-color)); - text-decoration-color: var(--cover-button-primary-text-decoration-color, var(--cover-button-text-decoration-color)); - color: var(--cover-button-primary-color, var(--cover-button-color)) -} - -.cover .cover-main>p:last-child a:first-child:hover { - border: var(--cover-button-primary-border--hover, var(--cover-button-border--hover, var(--cover-button-primary-border, var(--cover-button-border)))); - box-shadow: var(--cover-button-primary-box-shadow--hover, var(--cover-button-box-shadow--hover, var(--cover-button-primary-box-shadow, var(--cover-button-box-shadow)))); - background: var(--cover-button-primary-background--hover, var(--cover-button-background--hover, var(--cover-button-primary-background, var(--cover-button-background)))); - -webkit-text-decoration: var(--cover-button-primary-text-decoration--hover, var(--cover-button-text-decoration--hover, var(--cover-button-primary-text-decoration, var(--cover-button-text-decoration)))); - text-decoration: var(--cover-button-primary-text-decoration--hover, var(--cover-button-text-decoration--hover, var(--cover-button-primary-text-decoration, var(--cover-button-text-decoration)))); - -webkit-text-decoration-color: var(--cover-button-primary-text-decoration-color--hover, var(--cover-button-text-decoration-color--hover, var(--cover-button-primary-text-decoration-color, var(--cover-button-text-decoration-color)))); - text-decoration-color: var(--cover-button-primary-text-decoration-color--hover, var(--cover-button-text-decoration-color--hover, var(--cover-button-primary-text-decoration-color, var(--cover-button-text-decoration-color)))); - color: var(--cover-button-primary-color--hover, var(--cover-button-color--hover, var(--cover-button-primary-color, var(--cover-button-color)))) -} - -@media (min-width: 30.01em) { - .cover .cover-main>p:last-child a { - display: inline-block - } -} - -.cover .mask { - visibility: var(--cover-background-mask-visibility, hidden); - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - background-color: var(--cover-background-mask-color); - opacity: var(--cover-background-mask-opacity) -} - -.cover.has-mask .mask { - visibility: visible -} - -.cover.show { - display: flex -} - -.app-nav { - position: absolute; - z-index: 30; - top: calc(35px - (0.5em * var(--base-line-height))); - left: 45px; - right: 80px; - text-align: right -} - -.app-nav.no-badge { - right: 21px -} - -.app-nav li>img, -.app-nav li>a>img { - margin-top: -0.25em; - vertical-align: middle -} - -.app-nav li>img:first-child, -.app-nav li>a>img:first-child { - margin-right: -0.25em -} - -.app-nav ul, -.app-nav li { - margin: 0; - padding: 0; - list-style: none -} - -.app-nav li { - position: relative -} - -.app-nav li a { - display: block; - line-height: 1; - transition: var(--navbar-root-transition) -} - -.app-nav>ul>li { - display: inline-block; - margin: var(--navbar-root-margin) -} - -.app-nav>ul>li:first-child { - margin-left: 0 -} - -.app-nav>ul>li:last-child { - margin-right: 0 -} - -.app-nav>ul>li>a, -.app-nav>ul>li>span { - padding: var(--navbar-root-padding); - border-width: var(--navbar-root-border-width, 0); - border-style: var(--navbar-root-border-style); - border-color: var(--navbar-root-border-color); - border-radius: var(--navbar-root-border-radius); - background: var(--navbar-root-background); - color: var(--navbar-root-color); - -webkit-text-decoration: var(--navbar-root-text-decoration); - text-decoration: var(--navbar-root-text-decoration); - -webkit-text-decoration-color: var(--navbar-root-text-decoration-color); - text-decoration-color: var(--navbar-root-text-decoration-color) -} - -.app-nav>ul>li>a:hover, -.app-nav>ul>li>span:hover { - background: var(--navbar-root-background--hover, var(--navbar-root-background)); - border-style: var(--navbar-root-border-style--hover, var(--navbar-root-border-style)); - border-color: var(--navbar-root-border-color--hover, var(--navbar-root-border-color)); - color: var(--navbar-root-color--hover, var(--navbar-root-color)); - -webkit-text-decoration: var(--navbar-root-text-decoration--hover, var(--navbar-root-text-decoration)); - text-decoration: var(--navbar-root-text-decoration--hover, var(--navbar-root-text-decoration)); - -webkit-text-decoration-color: var(--navbar-root-text-decoration-color--hover, var(--navbar-root-text-decoration-color)); - text-decoration-color: var(--navbar-root-text-decoration-color--hover, var(--navbar-root-text-decoration-color)) -} - -.app-nav>ul>li>a:not(:last-child), -.app-nav>ul>li>span:not(:last-child) { - padding: var(--navbar-menu-root-padding, var(--navbar-root-padding)); - background: var(--navbar-menu-root-background, var(--navbar-root-background)) -} - -.app-nav>ul>li>a:not(:last-child):hover, -.app-nav>ul>li>span:not(:last-child):hover { - background: var(--navbar-menu-root-background--hover, var(--navbar-menu-root-background, var(--navbar-root-background--hover, var(--navbar-root-background)))) -} - -.app-nav>ul>li>a.active { - background: var(--navbar-root-background--active, var(--navbar-root-background)); - border-style: var(--navbar-root-border-style--active, var(--navbar-root-border-style)); - border-color: var(--navbar-root-border-color--active, var(--navbar-root-border-color)); - color: var(--navbar-root-color--active, var(--navbar-root-color)); - -webkit-text-decoration: var(--navbar-root-text-decoration--active, var(--navbar-root-text-decoration)); - text-decoration: var(--navbar-root-text-decoration--active, var(--navbar-root-text-decoration)); - -webkit-text-decoration-color: var(--navbar-root-text-decoration-color--active, var(--navbar-root-text-decoration-color)); - text-decoration-color: var(--navbar-root-text-decoration-color--active, var(--navbar-root-text-decoration-color)) -} - -.app-nav>ul>li>a.active:not(:last-child):hover { - background: var(--navbar-menu-root-background--active, var(--navbar-menu-root-background, var(--navbar-root-background--active, var(--navbar-root-background)))) -} - -.app-nav>ul>li ul { - visibility: hidden; - position: absolute; - top: 100%; - right: 50%; - overflow-y: auto; - box-sizing: border-box; - max-height: calc(50vh); - padding: var(--navbar-menu-padding); - border-width: var(--navbar-menu-border-width, 0); - border-style: solid; - border-color: var(--navbar-menu-border-color); - border-radius: var(--navbar-menu-border-radius); - background: var(--navbar-menu-background); - box-shadow: var(--navbar-menu-box-shadow); - text-align: left; - white-space: nowrap; - opacity: 0; - -webkit-transform: translate(50%, -0.35em); - transform: translate(50%, -0.35em); - transition: var(--navbar-menu-transition) -} - -.app-nav>ul>li ul li { - white-space: nowrap -} - -.app-nav>ul>li ul a { - margin: var(--navbar-menu-link-margin); - padding: var(--navbar-menu-link-padding); - border-width: var(--navbar-menu-link-border-width, 0); - border-style: var(--navbar-menu-link-border-style); - border-color: var(--navbar-menu-link-border-color); - border-radius: var(--navbar-menu-link-border-radius); - background: var(--navbar-menu-link-background); - color: var(--navbar-menu-link-color); - -webkit-text-decoration: var(--navbar-menu-link-text-decoration); - text-decoration: var(--navbar-menu-link-text-decoration); - -webkit-text-decoration-color: var(--navbar-menu-link-text-decoration-color); - text-decoration-color: var(--navbar-menu-link-text-decoration-color) -} - -.app-nav>ul>li ul a:hover { - background: var(--navbar-menu-link-background--hover, var(--navbar-menu-link-background)); - border-style: var(--navbar-menu-link-border-style--hover, var(--navbar-menu-link-border-style)); - border-color: var(--navbar-menu-link-border-color--hover, var(--navbar-menu-link-border-color)); - color: var(--navbar-menu-link-color--hover, var(--navbar-menu-link-color)); - -webkit-text-decoration: var(--navbar-menu-link-text-decoration--hover, var(--navbar-menu-link-text-decoration)); - text-decoration: var(--navbar-menu-link-text-decoration--hover, var(--navbar-menu-link-text-decoration)); - -webkit-text-decoration-color: var(--navbar-menu-link-text-decoration-color--hover, var(--navbar-menu-link-text-decoration-color)); - text-decoration-color: var(--navbar-menu-link-text-decoration-color--hover, var(--navbar-menu-link-text-decoration-color)) -} - -.app-nav>ul>li ul a.active { - background: var(--navbar-menu-link-background--active, var(--navbar-menu-link-background)); - border-style: var(--navbar-menu-link-border-style--active, var(--navbar-menu-link-border-style)); - border-color: var(--navbar-menu-link-border-color--active, var(--navbar-menu-link-border-color)); - color: var(--navbar-menu-link-color--active, var(--navbar-menu-link-color)); - -webkit-text-decoration: var(--navbar-menu-link-text-decoration--active, var(--navbar-menu-link-text-decoration)); - text-decoration: var(--navbar-menu-link-text-decoration--active, var(--navbar-menu-link-text-decoration)); - -webkit-text-decoration-color: var(--navbar-menu-link-text-decoration-color--active, var(--navbar-menu-link-text-decoration-color)); - text-decoration-color: var(--navbar-menu-link-text-decoration-color--active, var(--navbar-menu-link-text-decoration-color)) -} - -.app-nav>ul>li:hover ul, -.app-nav>ul>li:focus ul, -.app-nav>ul>li.focus-within ul { - visibility: visible; - opacity: 1; - -webkit-transform: translate(50%, 0); - transform: translate(50%, 0) -} - -.sidebar, -.sidebar-toggle, -main>.content { - transition: all var(--sidebar-transition-duration) ease-out -} - -@media (min-width: 48em) { - nav.app-nav { - margin-left: var(--sidebar-width) - } -} - -main { - position: relative; - overflow-x: hidden; - min-height: 100vh -} - -@media (min-width: 48em) { - main>.content { - margin-left: var(--sidebar-width) - } -} - -.sidebar { - display: flex; - flex-direction: column; - position: fixed; - z-index: 10; - top: 0; - right: 100%; - overflow-x: hidden; - overflow-y: auto; - height: 100vh; - width: var(--sidebar-width); - padding: var(--sidebar-padding); - border-width: var(--sidebar-border-width); - border-style: solid; - border-color: var(--sidebar-border-color); - background: var(--sidebar-background) -} - -.sidebar>h1 { - margin: 0; - margin: var(--sidebar-name-margin); - padding: var(--sidebar-name-padding); - background: var(--sidebar-name-background); - color: var(--sidebar-name-color); - font-family: var(--sidebar-name-font-family); - font-size: var(--sidebar-name-font-size); - font-weight: var(--sidebar-name-font-weight); - text-align: var(--sidebar-name-text-align) -} - -.sidebar>h1 img { - max-width: 100% -} - -.sidebar>h1 .app-name-link { - color: var(--sidebar-name-color) -} - -body:not([data-platform^="Mac"]) .sidebar::-webkit-scrollbar { - width: 5px -} - -body:not([data-platform^="Mac"]) .sidebar::-webkit-scrollbar-thumb { - border-radius: 50vw -} - -@media (min-width: 48em) { - .sidebar { - position: absolute; - -webkit-transform: translateX(var(--sidebar-width)); - transform: translateX(var(--sidebar-width)) - } -} - -@media print { - .sidebar { - display: none - } -} - -.sidebar-nav, -.sidebar nav { - order: 1; - margin: var(--sidebar-nav-margin); - padding: var(--sidebar-nav-padding); - background: var(--sidebar-nav-background) -} - -.sidebar-nav ul, -.sidebar nav ul { - margin: 0; - padding: 0; - list-style: none -} - -.sidebar-nav ul ul, -.sidebar nav ul ul { - margin-left: var(--sidebar-nav-indent) -} - -.sidebar-nav a, -.sidebar nav a { - display: block; - overflow: hidden; - margin: var(--sidebar-nav-link-margin); - padding: var(--sidebar-nav-link-padding); - border-width: var(--sidebar-nav-link-border-width, 0); - border-style: var(--sidebar-nav-link-border-style); - border-color: var(--sidebar-nav-link-border-color); - border-radius: var(--sidebar-nav-link-border-radius); - background-color: var(--sidebar-nav-link-background-color); - background-image: var(--sidebar-nav-link-background-image); - background-position: var(--sidebar-nav-link-background-position); - background-repeat: var(--sidebar-nav-link-background-repeat); - background-size: var(--sidebar-nav-link-background-size); - color: var(--sidebar-nav-link-color); - font-weight: var(--sidebar-nav-link-font-weight); - white-space: nowrap; - -webkit-text-decoration: var(--sidebar-nav-link-text-decoration); - text-decoration: var(--sidebar-nav-link-text-decoration); - -webkit-text-decoration-color: var(--sidebar-nav-link-text-decoration-color); - text-decoration-color: var(--sidebar-nav-link-text-decoration-color); - text-overflow: ellipsis; - transition: var(--sidebar-nav-link-transition) -} - -.sidebar-nav a img, -.sidebar nav a img { - margin-top: -0.25em; - vertical-align: middle -} - -.sidebar-nav a img:first-child, -.sidebar nav a img:first-child { - margin-right: 0.5em -} - -.sidebar-nav a:hover, -.sidebar nav a:hover { - border-width: var(--sidebar-nav-link-border-width--hover, var(--sidebar-nav-link-border-width, 0)); - border-style: var(--sidebar-nav-link-border-style--hover, var(--sidebar-nav-link-border-style)); - border-color: var(--sidebar-nav-link-border-color--hover, var(--sidebar-nav-link-border-color)); - background-color: var(--sidebar-nav-link-background-color--hover, var(--sidebar-nav-link-background-color)); - background-image: var(--sidebar-nav-link-background-image--hover, var(--sidebar-nav-link-background-image)); - background-position: var(--sidebar-nav-link-background-position--hover, var(--sidebar-nav-link-background-position)); - background-size: var(--sidebar-nav-link-background-size--hover, var(--sidebar-nav-link-background-size)); - color: var(--sidebar-nav-link-color--hover, var(--sidebar-nav-link-color)); - font-weight: var(--sidebar-nav-link-font-weight--hover, var(--sidebar-nav-link-font-weight)); - -webkit-text-decoration: var(--sidebar-nav-link-text-decoration--hover, var(--sidebar-nav-link-text-decoration)); - text-decoration: var(--sidebar-nav-link-text-decoration--hover, var(--sidebar-nav-link-text-decoration)); - -webkit-text-decoration-color: var(--sidebar-nav-link-text-decoration-color); - text-decoration-color: var(--sidebar-nav-link-text-decoration-color) -} - -.sidebar-nav ul>li>span, -.sidebar-nav ul>li>strong, -.sidebar nav ul>li>span, -.sidebar nav ul>li>strong { - display: block; - margin: var(--sidebar-nav-strong-margin); - padding: var(--sidebar-nav-strong-padding); - border-width: var(--sidebar-nav-strong-border-width, 0); - border-style: solid; - border-color: var(--sidebar-nav-strong-border-color); - color: var(--sidebar-nav-strong-color); - font-size: var(--sidebar-nav-strong-font-size); - font-weight: var(--sidebar-nav-strong-font-weight); - text-transform: var(--sidebar-nav-strong-text-transform) -} - -.sidebar-nav ul>li>span+ul, -.sidebar-nav ul>li>strong+ul, -.sidebar nav ul>li>span+ul, -.sidebar nav ul>li>strong+ul { - margin-left: 0 -} - -.sidebar-nav ul>li:first-child>span, -.sidebar-nav ul>li:first-child>strong, -.sidebar nav ul>li:first-child>span, -.sidebar nav ul>li:first-child>strong { - margin-top: 0 -} - -.sidebar-nav::-webkit-scrollbar, -.sidebar nav::-webkit-scrollbar { - width: 0 -} - -@supports (width: env(safe-area-inset)) { - @media only screen and (orientation: landscape) { - .sidebar-nav, .sidebar nav { - margin-left: calc(env(safe-area-inset-left) / 2) - } - } -} - -.sidebar-nav li>a:before, -.sidebar-nav li>strong:before { - display: inline-block -} - -.sidebar-nav li>a { - background-repeat: var(--sidebar-nav-pagelink-background-repeat); - background-size: var(--sidebar-nav-pagelink-background-size) -} - -.sidebar-nav li>a[href^="#/"]:not([href*="?id="]) { - transition: var(--sidebar-nav-pagelink-transition) -} - -.sidebar-nav li>a[href^="#/"]:not([href*="?id="]), -.sidebar-nav li>a[href^="#/"]:not([href*="?id="]) ~ ul a { - padding: var(--sidebar-nav-pagelink-padding, var(--sidebar-nav-link-padding)) -} - -.sidebar-nav li>a[href^="#/"]:not([href*="?id="]):only-child { - background-image: var(--sidebar-nav-pagelink-background-image); - background-position: var(--sidebar-nav-pagelink-background-position) -} - -.sidebar-nav li>a[href^="#/"]:not([href*="?id="]):not(:only-child) { - background-image: var(--sidebar-nav-pagelink-background-image--loaded, var(--sidebar-nav-pagelink-background-image)); - background-position: var(--sidebar-nav-pagelink-background-position--loaded, var(--sidebar-nav-pagelink-background-image)) -} - -.sidebar-nav li.active>a, -.sidebar-nav li.collapse>a { - border-width: var(--sidebar-nav-link-border-width--active, var(--sidebar-nav-link-border-width)); - border-style: var(--sidebar-nav-link-border-style--active, var(--sidebar-nav-link-border-style)); - border-color: var(--sidebar-nav-link-border-color--active, var(--sidebar-nav-link-border-color)); - background-color: var(--sidebar-nav-link-background-color--active, var(--sidebar-nav-link-background-color)); - background-image: var(--sidebar-nav-link-background-image--active, var(--sidebar-nav-link-background-image)); - background-position: var(--sidebar-nav-link-background-position--active, var(--sidebar-nav-link-background-position)); - background-size: var(--sidebar-nav-link-background-size--active, var(--sidebar-nav-link-background-size)); - color: var(--sidebar-nav-link-color--active, var(--sidebar-nav-link-color)); - font-weight: var(--sidebar-nav-link-font-weight--active, var(--sidebar-nav-link-font-weight)); - -webkit-text-decoration: var(--sidebar-nav-link-text-decoration--active, var(--sidebar-nav-link-text-decoration)); - text-decoration: var(--sidebar-nav-link-text-decoration--active, var(--sidebar-nav-link-text-decoration)); - -webkit-text-decoration-color: var(--sidebar-nav-link-text-decoration-color); - text-decoration-color: var(--sidebar-nav-link-text-decoration-color) -} - -.sidebar-nav li.active>a[href^="#/"]:not([href*="?id="]):not(:only-child) { - background-image: var(--sidebar-nav-pagelink-background-image--active, var(--sidebar-nav-pagelink-background-image--loaded, var(--sidebar-nav-pagelink-background-image))); - background-position: var(--sidebar-nav-pagelink-background-position--active, var(--sidebar-nav-pagelink-background-position--loaded, var(--sidebar-nav-pagelink-background-image))) -} - -.sidebar-nav li.collapse>a[href^="#/"]:not([href*="?id="]):not(:only-child) { - background-image: var(--sidebar-nav-pagelink-background-image--collapse, var(--sidebar-nav-pagelink-background-image--loaded, var(--sidebar-nav-pagelink-background-image))); - background-position: var(--sidebar-nav-pagelink-background-position--collapse, var(--sidebar-nav-pagelink-background-position--loaded, var(--sidebar-nav-pagelink-background-image))) -} - -.sidebar-nav li.collapse .app-sub-sidebar { - display: none -} - -.sidebar-nav>ul>li>a:before { - content: var(--sidebar-nav-link-before-content-l1, var(--sidebar-nav-link-before-content)); - margin: var(--sidebar-nav-link-before-margin-l1, var(--sidebar-nav-link-before-margin)); - color: var(--sidebar-nav-link-before-color-l1, var(--sidebar-nav-link-before-color)) -} - -.sidebar-nav>ul>li.active>a:before { - content: var(--sidebar-nav-link-before-content-l1--active, var(--sidebar-nav-link-before-content--active, var(--sidebar-nav-link-before-content-l1, var(--sidebar-nav-link-before-content)))); - color: var(--sidebar-nav-link-before-color-l1--active, var(--sidebar-nav-link-before-color--active, var(--sidebar-nav-link-before-color-l1, var(--sidebar-nav-link-before-color)))) -} - -.sidebar-nav>ul>li>ul>li>a:before { - content: var(--sidebar-nav-link-before-content-l2, var(--sidebar-nav-link-before-content)); - margin: var(--sidebar-nav-link-before-margin-l2, var(--sidebar-nav-link-before-margin)); - color: var(--sidebar-nav-link-before-color-l2, var(--sidebar-nav-link-before-color)) -} - -.sidebar-nav>ul>li>ul>li.active>a:before { - content: var(--sidebar-nav-link-before-content-l2--active, var(--sidebar-nav-link-before-content--active, var(--sidebar-nav-link-before-content-l2, var(--sidebar-nav-link-before-content)))); - color: var(--sidebar-nav-link-before-color-l2--active, var(--sidebar-nav-link-before-color--active, var(--sidebar-nav-link-before-color-l2, var(--sidebar-nav-link-before-color)))) -} - -.sidebar-nav>ul>li>ul>li>ul>li>a:before { - content: var(--sidebar-nav-link-before-content-l3, var(--sidebar-nav-link-before-content)); - margin: var(--sidebar-nav-link-before-margin-l3, var(--sidebar-nav-link-before-margin)); - color: var(--sidebar-nav-link-before-color-l3, var(--sidebar-nav-link-before-color)) -} - -.sidebar-nav>ul>li>ul>li>ul>li.active>a:before { - content: var(--sidebar-nav-link-before-content-l3--active, var(--sidebar-nav-link-before-content--active, var(--sidebar-nav-link-before-content-l3, var(--sidebar-nav-link-before-content)))); - color: var(--sidebar-nav-link-before-color-l3--active, var(--sidebar-nav-link-before-color--active, var(--sidebar-nav-link-before-color-l3, var(--sidebar-nav-link-before-color)))) -} - -.sidebar-nav>ul>li>ul>li>ul>li>ul>li>a:before { - content: var(--sidebar-nav-link-before-content-l4, var(--sidebar-nav-link-before-content)); - margin: var(--sidebar-nav-link-before-margin-l4, var(--sidebar-nav-link-before-margin)); - color: var(--sidebar-nav-link-before-color-l4, var(--sidebar-nav-link-before-color)) -} - -.sidebar-nav>ul>li>ul>li>ul>li>ul>li.active>a:before { - content: var(--sidebar-nav-link-before-content-l4--active, var(--sidebar-nav-link-before-content--active, var(--sidebar-nav-link-before-content-l4, var(--sidebar-nav-link-before-content)))); - color: var(--sidebar-nav-link-before-color-l4--active, var(--sidebar-nav-link-before-color--active, var(--sidebar-nav-link-before-color-l4, var(--sidebar-nav-link-before-color)))) -} - -.sidebar-nav>:last-child { - margin-bottom: 2rem -} - -.sidebar-toggle, -.sidebar-toggle-button { - width: var(--sidebar-toggle-width); - outline: none -} - -.sidebar-toggle { - position: fixed; - z-index: 11; - top: 0; - bottom: 0; - left: 0; - max-width: 40px; - margin: 0; - padding: 0; - border: 0; - background: transparent; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - cursor: pointer -} - -.sidebar-toggle .sidebar-toggle-button { - position: absolute; - top: var(--sidebar-toggle-offset-top); - left: var(--sidebar-toggle-offset-left); - height: var(--sidebar-toggle-height); - border-radius: var(--sidebar-toggle-border-radius); - border-width: var(--sidebar-toggle-border-width); - border-style: var(--sidebar-toggle-border-style); - border-color: var(--sidebar-toggle-border-color); - background: var(--sidebar-toggle-background, transparent); - color: var(--sidebar-toggle-icon-color) -} - -.sidebar-toggle span { - position: absolute; - top: calc(50% - (var(--sidebar-toggle-icon-stroke-width) / 2)); - left: calc(50% - (var(--sidebar-toggle-icon-width) / 2)); - height: var(--sidebar-toggle-icon-stroke-width); - width: var(--sidebar-toggle-icon-width); - background-color: currentColor -} - -.sidebar-toggle span:nth-child(1) { - margin-top: calc(0px - (var(--sidebar-toggle-icon-height) / 2)) -} - -.sidebar-toggle span:nth-child(3) { - margin-top: calc((var(--sidebar-toggle-icon-height) / 2)) -} - -@media (min-width: 48em) { - .sidebar-toggle { - position: absolute; - overflow: visible; - top: var(--sidebar-toggle-offset-top); - bottom: auto; - left: 0; - height: var(--sidebar-toggle-height); - -webkit-transform: translateX(var(--sidebar-width)); - transform: translateX(var(--sidebar-width)) - } - .sidebar-toggle .sidebar-toggle-button { - top: 0 - } -} - -@media print { - .sidebar-toggle { - display: none - } -} - -@media (max-width: 47.99em) { - body.close .sidebar, - body.close .sidebar-toggle, - body.close main>.content { - -webkit-transform: translateX(var(--sidebar-width)); - transform: translateX(var(--sidebar-width)) - } -} - -@media (min-width: 48em) { - body.close main>.content { - -webkit-transform: translateX(0); - transform: translateX(0) - } -} - -@media (max-width: 47.99em) { - body.close nav.app-nav, - body.close .github-corner { - display: none - } -} - -@media (min-width: 48em) { - body.close .sidebar, - body.close .sidebar-toggle { - -webkit-transform: translateX(0); - transform: translateX(0) - } -} - -@media (min-width: 48em) { - body.close nav.app-nav { - margin-left: 0 - } -} - -@media (max-width: 47.99em) { - body.close .sidebar-toggle { - width: 100%; - max-width: none - } - body.close .sidebar-toggle span { - margin-top: 0 - } - body.close .sidebar-toggle span:nth-child(1) { - -webkit-transform: rotate(45deg); - transform: rotate(45deg) - } - body.close .sidebar-toggle span:nth-child(2) { - display: none - } - body.close .sidebar-toggle span:nth-child(3) { - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg) - } -} - -@media (min-width: 48em) { - body.close main>.content { - margin-left: 0 - } -} - -@media (min-width: 48em) { - body.sticky .sidebar, - body.sticky .sidebar-toggle { - position: fixed - } -} - -body .docsify-copy-code-button, -body .docsify-copy-code-button:after { - border-radius: var(--border-radius-m, 0); - border-top-left-radius: 0; - border-bottom-right-radius: 0; - background: var(--copycode-background); - color: var(--copycode-color) -} - -body .docsify-copy-code-button span { - border-radius: var(--border-radius-s, 0) -} - -body .docsify-pagination-container { - border-top: var(--pagination-border-top); - color: var(--pagination-color) -} - -body .pagination-item-label { - font-size: var(--pagination-label-font-size) -} - -body .pagination-item-label svg { - color: var(--pagination-label-color); - height: var(--pagination-chevron-height); - stroke: var(--pagination-chevron-stroke); - stroke-linecap: var(--pagination-chevron-stroke-linecap); - stroke-linejoin: var(--pagination-chevron-stroke-linecap); - stroke-width: var(--pagination-chevron-stroke-width) -} - -body .pagination-item-title { - color: var(--pagination-title-color); - font-size: var(--pagination-title-font-size) -} - -body .app-name.hide { - display: block -} - -body .sidebar { - padding: var(--sidebar-padding) -} - -.sidebar .search { - margin: 0; - padding: 0; - border: 0 -} - -.sidebar .search input { - padding: 0; - line-height: 1; - font-size: inherit -} - -.sidebar .search .clear-button { - width: auto -} - -.sidebar .search .clear-button svg { - -webkit-transform: scale(1); - transform: scale(1) -} - -.sidebar .search .matching-post { - border: none -} - -.sidebar .search p { - font-size: inherit -} - -.sidebar .search { - order: var(--search-flex-order); - margin: var(--search-margin); - padding: var(--search-padding); - background: var(--search-background) -} - -.sidebar .search a { - color: inherit -} - -.sidebar .search h2 { - margin: var(--search-result-heading-margin); - font-size: var(--search-result-heading-font-size); - font-weight: var(--search-result-heading-font-weight); - color: var(--search-result-heading-color) -} - -.sidebar .search .input-wrap { - margin: var(--search-input-margin); - background-color: var(--search-input-background-color); - border-width: var(--search-input-border-width, 0); - border-style: solid; - border-color: var(--search-input-border-color); - border-radius: var(--search-input-border-radius) -} - -.sidebar .search input[type="search"] { - min-width: 0; - padding: var(--search-input-padding); - border: none; - background-color: transparent; - background-image: var(--search-input-background-image); - background-position: var(--search-input-background-position); - background-repeat: var(--search-input-background-repeat); - background-size: var(--search-input-background-size); - font-size: var(--search-input-font-size); - color: var(--search-input-color); - transition: var(--search-input-transition) -} - -.sidebar .search input[type="search"]::-ms-clear { - display: none -} - -.sidebar .search input[type="search"]::-webkit-input-placeholder { - color: var(--search-input-placeholder-color, gray) -} - -.sidebar .search input[type="search"]:-ms-input-placeholder { - color: var(--search-input-placeholder-color, gray) -} - -.sidebar .search input[type="search"]::-ms-input-placeholder { - color: var(--search-input-placeholder-color, gray) -} - -.sidebar .search input[type="search"]::placeholder { - color: var(--search-input-placeholder-color, gray) -} - -.sidebar .search input[type="search"]::-webkit-input-placeholder { - line-height: normal -} - -.sidebar .search input[type="search"]:focus { - background-color: var(--search-input-background-color--focus, var(--search-input-background-color)); - background-image: var(--search-input-background-image--focus, var(--search-input-background-image)); - background-position: var(--search-input-background-position--focus, var(--search-input-background-position)); - background-size: var(--search-input-background-size--focus, var(--search-input-background-size)) -} - -@supports (width: env(safe-area-inset)) { - @media only screen and (orientation: landscape) { - .sidebar .search input[type="search"] { - margin-left: calc(env(safe-area-inset-left) / 2) - } - } -} - -.sidebar .search p { - overflow: hidden; - text-overflow: ellipsis; - -webkit-line-clamp: 2 -} - -.sidebar .search p:empty { - text-align: center -} - -.sidebar .search .clear-button { - margin: 0 15px 0 0; - padding: 0; - border: none; - line-height: 1; - background: transparent; - cursor: pointer -} - -.sidebar .search .clear-button svg circle { - fill: var(--search-clear-icon-color1, gray) -} - -.sidebar .search .clear-button svg path { - stroke: var(--search-clear-icon-color2, #fff) -} - -.sidebar .search.show ~ *:not(h1) { - display: none -} - -.sidebar .search .results-panel { - display: none; - color: var(--search-result-item-color); - font-size: var(--search-result-item-font-size); - font-weight: var(--search-result-item-font-weight) -} - -.sidebar .search .results-panel.show { - display: block -} - -.sidebar .search .matching-post { - margin: var(--search-result-item-margin); - padding: var(--search-result-item-padding) -} - -.sidebar .search .matching-post, -.sidebar .search .matching-post:last-child { - border-width: var(--search-result-item-border-width, 0) !important; - border-style: var(--search-result-item-border-style); - border-color: var(--search-result-item-border-color) -} - -.sidebar .search .matching-post p { - margin: 0 -} - -.sidebar .search .search-keyword { - margin: var(--search-result-keyword-margin); - padding: var(--search-result-keyword-padding); - border-radius: var(--search-result-keyword-border-radius); - background-color: var(--search-result-keyword-background); - color: var(--search-result-keyword-color, currentColor); - font-style: normal; - font-weight: var(--search-result-keyword-font-weight) -} - -.medium-zoom-overlay, -.medium-zoom-image--open { - z-index: 50 !important -} - -.medium-zoom-overlay { - background: var(--zoomimage-overlay-background) !important -} - -:root { - --mono-hue: 113; - --mono-saturation: 0%; - --mono-shade3: hsl(var(--mono-hue), var(--mono-saturation), 20%); - --mono-shade2: hsl(var(--mono-hue), var(--mono-saturation), 30%); - --mono-shade1: hsl(var(--mono-hue), var(--mono-saturation), 40%); - --mono-base: hsl(var(--mono-hue), var(--mono-saturation), 50%); - --mono-tint1: hsl(var(--mono-hue), var(--mono-saturation), 70%); - --mono-tint2: hsl(var(--mono-hue), var(--mono-saturation), 89%); - --mono-tint3: hsl(var(--mono-hue), var(--mono-saturation), 97%); - --theme-hue: 204; - --theme-saturation: 90%; - --theme-lightness: 45%; - --theme-color: hsl(var(--theme-hue), var(--theme-saturation), var(--theme-lightness)); - --modular-scale: 1.333; - --modular-scale--2: calc(var(--modular-scale--1) / var(--modular-scale)); - --modular-scale--1: calc(var(--modular-scale-1) / var(--modular-scale)); - --modular-scale-1: 1rem; - --modular-scale-2: calc(var(--modular-scale-1) * var(--modular-scale)); - --modular-scale-3: calc(var(--modular-scale-2) * var(--modular-scale)); - --modular-scale-4: calc(var(--modular-scale-3) * var(--modular-scale)); - --modular-scale-5: calc(var(--modular-scale-4) * var(--modular-scale)); - --font-size-xxxl: var(--modular-scale-5); - --font-size-xxl: var(--modular-scale-4); - --font-size-xl: var(--modular-scale-3); - --font-size-l: var(--modular-scale-2); - --font-size-m: var(--modular-scale-1); - --font-size-s: var(--modular-scale--1); - --font-size-xs: var(--modular-scale--2); - --duration-slow: 1s; - --duration-medium: 0.5s; - --duration-fast: 0.25s; - --spinner-size: 60px; - --spinner-track-width: 4px; - --spinner-track-color: rgba(0, 0, 0, 0.15); - --spinner-transition-duration: var(--duration-medium) -} - -:root { - --base-background-color: #fff; - --base-color: var(--mono-shade2); - --base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - --base-font-size: 16px; - --base-font-weight: normal; - --base-line-height: 1.7; - --emoji-size: calc(var(--base-line-height) * 1em); - --hr-border: 1px solid var(--mono-tint2); - --mark-background: #ffecb3; - --pre-font-family: var(--code-font-family); - --pre-font-size: var(--code-font-size); - --pre-font-weight: normal; - --selection-color: #b4d5fe; - --small-font-size: var(--font-size-s); - --strong-color: var(--heading-color); - --strong-font-weight: 600; - --subsup-font-size: var(--font-size-s) -} - -:root { - --content-max-width: 55em; - --blockquote-background: var(--mono-tint3); - --blockquote-border-style: solid; - --blockquote-border-radius: var(--border-radius-m); - --blockquote-em-font-weight: normal; - --blockquote-font-weight: normal; - --code-font-family: Inconsolata, Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace; - --code-font-size: calc(var(--font-size-m) * 0.95); - --code-font-weight: normal; - --code-tab-size: 4; - --code-block-border-radius: var(--border-radius-m); - --code-block-line-height: var(--base-line-height); - --code-block-margin: 1em 0; - --code-block-padding: 1.75em 1.5em 1.5em 1.5em; - --code-inline-background: var(--code-theme-background); - --code-inline-border-radius: var(--border-radius-s); - --code-inline-color: var(--code-theme-text); - --code-inline-margin: 0 0.15em; - --code-inline-padding: 0.125em 0.4em; - --code-theme-background: var(--mono-tint3); - --heading-color: var(--mono-shade3); - --heading-margin: 2.5rem 0 0; - --heading-h1-border-style: solid; - --heading-h1-font-size: var(--font-size-xxl); - --heading-h2-border-style: solid; - --heading-h2-font-size: var(--font-size-xl); - --heading-h3-border-style: solid; - --heading-h3-font-size: var(--font-size-l); - --heading-h4-border-style: solid; - --heading-h4-font-size: var(--font-size-m); - --heading-h5-border-style: solid; - --heading-h5-font-size: var(--font-size-s); - --heading-h6-border-style: solid; - --heading-h6-font-size: var(--font-size-xs); - --kbd-background: var(--mono-tint3); - --kbd-border-radius: var(--border-radius-m); - --kbd-margin: 0 0.3em; - --kbd-min-width: 2.5em; - --kbd-padding: 0.65em 0.5em; - --link-text-decoration: underline; - --notice-background: var(--mono-tint3); - --notice-border-radius: var(--border-radius-m); - --notice-border-style: solid; - --notice-font-weight: normal; - --notice-padding: 1em 1.5em; - --notice-before-font-weight: normal; - --table-cell-padding: 0.75em 0.5em; - --table-head-border-color: var(--table-cell-border-color); - --table-head-font-weight: var(--strong-font-weight); - --table-row-odd-background: var(--mono-tint3) -} - -:root { - --cover-margin: 0 auto; - --cover-max-width: 40em; - --cover-text-align: center; - --cover-background-color: var(--base-background-color); - --cover-background-mask-color: var(--base-background-color); - --cover-background-mask-opacity: 0.8; - --cover-background-position: center center; - --cover-background-repeat: no-repeat; - --cover-background-size: cover; - --cover-blockquote-font-size: var(--font-size-l); - --cover-border-color: var(--theme-color); - --cover-button-border: 1px solid var(--theme-color); - --cover-button-border-radius: var(--border-radius-m); - --cover-button-color: var(--theme-color); - --cover-button-padding: 0.5em 2rem; - --cover-button-text-decoration: none; - --cover-button-transition: all var(--duration-fast) ease-in-out; - --cover-button-primary-background: var(--theme-color); - --cover-button-primary-border: 1px solid var(--theme-color); - --cover-button-primary-color: #fff; - --cover-heading-color: var(--theme-color); - --cover-heading-font-size: var(--font-size-xxl); - --cover-heading-font-weight: normal; - --cover-link-text-decoration: underline -} - -:root { - --navbar-root-border-style: solid; - --navbar-root-margin: 0 0 0 1.5em; - --navbar-root-transition: all var(--duration-fast); - --navbar-menu-background: var(--base-background-color); - --navbar-menu-border-radius: var(--border-radius-m); - --navbar-menu-box-shadow: rgba(45, 45, 45, 0.05) 0px 0px 1px, rgba(49, 49, 49, 0.05) 0px 1px 2px, rgba(42, 42, 42, 0.05) 0px 2px 4px, rgba(32, 32, 32, 0.05) 0px 4px 8px, rgba(49, 49, 49, 0.05) 0px 8px 16px, rgba(35, 35, 35, 0.05) 0px 16px 32px; - --navbar-menu-padding: 0.5em; - --navbar-menu-transition: all var(--duration-fast); - --navbar-menu-link-border-style: solid; - --navbar-menu-link-margin: 0.75em 0.5em; - --navbar-menu-link-padding: 0.2em 0 -} - -:root { - --copycode-background: #808080; - --copycode-color: #fff -} - -:root { - --docsifytabs-border-color: var(--mono-tint2); - --docsifytabs-border-radius-px: var(--border-radius-s); - --docsifytabs-tab-background: var(--mono-tint3); - --docsifytabs-tab-color: var(--mono-tint1) -} - -:root { - --pagination-border-top: 1px solid var(--mono-tint2); - --pagination-chevron-height: 0.8em; - --pagination-chevron-stroke: currentColor; - --pagination-chevron-stroke-linecap: round; - --pagination-chevron-stroke-width: 1px; - --pagination-label-font-size: var(--font-size-s); - --pagination-title-font-size: var(--font-size-l) -} - -:root { - --search-margin: 1.5rem 0 0; - --search-input-background-repeat: no-repeat; - --search-input-border-color: var(--mono-tint1); - --search-input-border-width: 1px; - --search-input-padding: 0.5em; - --search-flex-order: 1; - --search-result-heading-color: var(--heading-color); - --search-result-heading-font-size: var(--base-font-size); - --search-result-heading-font-weight: normal; - --search-result-heading-margin: 0 0 0.25em; - --search-result-item-border-color: var(--mono-tint2); - --search-result-item-border-style: solid; - --search-result-item-border-width: 0 0 1px 0; - --search-result-item-font-weight: normal; - --search-result-item-padding: 1em 0; - --search-result-keyword-background: var(--mark-background); - --search-result-keyword-border-radius: var(--border-radius-s); - --search-result-keyword-color: var(--mark-color); - --search-result-keyword-font-weight: normal; - --search-result-keyword-margin: 0 0.1em; - --search-result-keyword-padding: 0.2em 0 -} - -:root { - --zoomimage-overlay-background: rgba(0, 0, 0, 0.875) -} - -:root { - --sidebar-background: var(--base-background-color); - --sidebar-border-width: 0; - --sidebar-padding: 0 25px; - --sidebar-transition-duration: var(--duration-fast); - --sidebar-width: 17rem; - --sidebar-name-font-size: var(--font-size-l); - --sidebar-name-font-weight: normal; - --sidebar-name-margin: 1.5rem 0 0; - --sidebar-name-text-align: center; - --sidebar-nav-strong-border-color: var(--sidebar-border-color); - --sidebar-nav-strong-color: var(--heading-color); - --sidebar-nav-strong-font-weight: var(--strong-font-weight); - --sidebar-nav-strong-margin: 1.5em 0 0.5em; - --sidebar-nav-strong-padding: 0.25em 0; - --sidebar-nav-indent: 1em; - --sidebar-nav-margin: 1.5rem 0 0; - --sidebar-nav-link-border-style: solid; - --sidebar-nav-link-border-width: 0; - --sidebar-nav-link-color: var(--base-color); - --sidebar-nav-link-font-weight: normal; - --sidebar-nav-link-padding: 0.25em 0; - --sidebar-nav-link-text-decoration--active: underline; - --sidebar-nav-link-text-decoration--hover: underline; - --sidebar-nav-link-before-margin: 0 0.35em 0 0; - --sidebar-nav-pagelink-background-repeat: no-repeat; - --sidebar-nav-pagelink-transition: var(--sidebar-nav-link-transition); - --sidebar-toggle-border-radius: var(--border-radius-s); - --sidebar-toggle-border-style: solid; - --sidebar-toggle-border-width: 0; - --sidebar-toggle-height: 36px; - --sidebar-toggle-icon-color: var(--base-color); - --sidebar-toggle-icon-height: 10px; - --sidebar-toggle-icon-stroke-width: 1px; - --sidebar-toggle-icon-width: 16px; - --sidebar-toggle-offset-left: 0; - --sidebar-toggle-offset-top: calc(35px - (var(--sidebar-toggle-height) / 2)); - --sidebar-toggle-width: 44px -} - -:root { - --code-theme-background: #f3f3f3; - --code-theme-comment: #6e8090; - --code-theme-function: #dd4a68; - --code-theme-keyword: #07a; - --code-theme-operator: #a67f59; - --code-theme-punctuation: #999; - --code-theme-selection: #b3d4fc; - --code-theme-selector: #690; - --code-theme-tag: #905; - --code-theme-text: #333; - --code-theme-variable: #e90 -} - -:root { - --border-radius-s: 2px; - --border-radius-m: 4px; - --border-radius-l: 8px; - --strong-font-weight: 600; - --blockquote-border-color: var(--theme-color); - --blockquote-border-radius: 0 var(--border-radius-m) var(--border-radius-m) 0; - --blockquote-border-width: 0 0 0 4px; - --code-inline-background: var(--mono-tint2); - --code-theme-background: var(--mono-tint3); - --heading-font-weight: var(--strong-font-weight); - --heading-h1-font-weight: 400; - --heading-h2-font-weight: 400; - --heading-h2-border-color: var(--mono-tint2); - --heading-h2-border-width: 0 0 1px 0; - --heading-h2-margin: 2.5rem 0 1.5rem; - --heading-h2-padding: 0 0 1rem 0; - --kbd-border: 1px solid var(--mono-tint2); - --notice-border-radius: 0 var(--border-radius-m) var(--border-radius-m) 0; - --notice-border-width: 0 0 0 4px; - --notice-padding: 1em 1.5em 1em 3em; - --notice-before-border-radius: 100%; - --notice-before-font-weight: bold; - --notice-before-height: 1.5em; - --notice-before-left: 0.75em; - --notice-before-line-height: 1.5; - --notice-before-margin: 0 0.25em 0 0; - --notice-before-position: absolute; - --notice-before-width: var(--notice-before-height); - --notice-important-background: hsl(340, 60%, 96%); - --notice-important-border-color: hsl(340, 90%, 45%); - --notice-important-before-background: var(--notice-important-border-color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M10 14C10 15.1 9.1 16 8 16 6.9 16 6 15.1 6 14 6 12.9 6.9 12 8 12 9.1 12 10 12.9 10 14Z'/%3E%3Cpath d='M10 1.6C10 1.2 9.8 0.9 9.6 0.7 9.2 0.3 8.6 0 8 0 7.4 0 6.8 0.2 6.5 0.6 6.2 0.9 6 1.2 6 1.6 6 1.7 6 1.8 6 1.9L6.8 9.6C6.9 9.9 7 10.1 7.2 10.2 7.4 10.4 7.7 10.5 8 10.5 8.3 10.5 8.6 10.4 8.8 10.3 9 10.1 9.1 9.9 9.2 9.6L10 1.9C10 1.8 10 1.7 10 1.6Z'/%3E%3C/svg%3E") center / 0.875em no-repeat; - --notice-important-before-color: #fff; - --notice-important-before-content: ""; - --notice-tip-background: hsl(204, 60%, 96%); - --notice-tip-border-color: hsl(204, 90%, 45%); - --notice-tip-before-background: var(--notice-tip-border-color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M9.1 0C10.2 0 10.7 0.7 10.7 1.6 10.7 2.6 9.8 3.6 8.6 3.6 7.6 3.6 7 3 7 2 7 1.1 7.7 0 9.1 0Z'/%3E%3Cpath d='M5.8 16C5 16 4.4 15.5 5 13.2L5.9 9.1C6.1 8.5 6.1 8.2 5.9 8.2 5.7 8.2 4.6 8.6 3.9 9.1L3.5 8.4C5.6 6.6 7.9 5.6 8.9 5.6 9.8 5.6 9.9 6.6 9.5 8.2L8.4 12.5C8.2 13.2 8.3 13.5 8.5 13.5 8.7 13.5 9.6 13.2 10.4 12.5L10.9 13.2C8.9 15.2 6.7 16 5.8 16Z'/%3E%3C/svg%3E") center / 0.875em no-repeat; - --notice-tip-before-color: #fff; - --notice-tip-before-content: ""; - --table-cell-border-color: var(--mono-tint2); - --table-cell-border-width: 1px 0; - --cover-background-color: hsl(var(--theme-hue), 25%, 60%); - --cover-background-image: radial-gradient(ellipse at center 115%, rgba(255, 255, 255, 0.9), transparent); - --cover-blockquote-color: var(--strong-color); - --cover-heading-color: #fff; - --cover-heading-font-size-max: 56; - --cover-heading-font-size-min: 34; - --cover-heading-font-weight: 200; - --navbar-root-color--active: var(--theme-color); - --navbar-menu-border-radius: var(--border-radius-m); - --navbar-menu-root-background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.6' height='6' viewBox='0 0 9.6 6'%3E%3Cpath d='M1.5 1.5l3.3 3 3.3-3' stroke-width='1.5' stroke='rgb%28179, 179, 179%29' fill='none' stroke-linecap='square' stroke-linejoin='miter' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E") right no-repeat; - --navbar-menu-root-padding: 0 18px 0 0; - --search-input-background-color: #fff; - --search-input-background-image: url("data:image/svg+xml,%3Csvg height='20px' width='20px' viewBox='0 0 24 24' fill='none' stroke='rgba(0, 0, 0, 0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' preserveAspectRatio='xMidYMid meet' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10.5' cy='10.5' r='7.5' vector-effect='non-scaling-stroke'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='15.8' y2='15.8' vector-effect='non-scaling-stroke'%3E%3C/line%3E%3C/svg%3E"); - --search-input-background-position: 21px center; - --search-input-border-color: var(--sidebar-border-color); - --search-input-border-width: 1px 0; - --search-input-margin: 0 -25px; - --search-input-padding: 0.65em 1em 0.65em 50px; - --search-input-placeholder-color: rgba(0, 0, 0, 0.4); - --search-clear-icon-color1: rgba(0, 0, 0, 0.3); - --search-result-heading-font-weight: var(--strong-font-weight); - --search-result-item-border-color: var(--sidebar-border-color); - --search-result-keyword-border-radius: var(--border-radius-s); - --sidebar-background: var(--mono-tint3); - --sidebar-border-color: var(--mono-tint2); - --sidebar-border-width: 0 1px 0 0; - --sidebar-name-color: var(--theme-color); - --sidebar-name-font-weight: 300; - --sidebar-nav-strong-border-width: 0 0 1px 0; - --sidebar-nav-strong-font-size: smaller; - --sidebar-nav-strong-margin: 2em -25px 0.75em 0; - --sidebar-nav-strong-padding: 0.25em 0 0.75em 0; - --sidebar-nav-strong-text-transform: uppercase; - --sidebar-nav-link-border-color: transparent; - --sidebar-nav-link-border-color--active: var(--theme-color); - --sidebar-nav-link-border-width: 0 4px 0 0; - --sidebar-nav-link-color--active: var(--theme-color); - --sidebar-nav-link-margin: 0 -25px 0 0; - --sidebar-nav-link-text-decoration: none; - --sidebar-nav-link-text-decoration--active: none; - --sidebar-nav-link-text-decoration--hover: underline; - --sidebar-nav-link-before-content-l3: '-'; - --sidebar-nav-pagelink-background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11.2' viewBox='0 0 7 11.2'%3E%3Cpath d='M1.5 1.5l4 4.1 -4 4.1' stroke-width='1.5' stroke='rgb%28179, 179, 179%29' fill='none' stroke-linecap='square' stroke-linejoin='miter' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E"); - --sidebar-nav-pagelink-background-image--active: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.2' height='7' viewBox='0 0 11.2 7'%3E%3Cpath d='M1.5 1.5l4.1 4 4.1-4' stroke-width='1.5' stroke='rgb%2811, 135, 218%29' fill='none' stroke-linecap='square' stroke-linejoin='miter' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E"); - --sidebar-nav-pagelink-background-image--collapse: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11.2' viewBox='0 0 7 11.2'%3E%3Cpath d='M1.5 1.5l4 4.1 -4 4.1' stroke-width='1.5' stroke='rgb%2811, 135, 218%29' fill='none' stroke-linecap='square' stroke-linejoin='miter' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E"); - --sidebar-nav-pagelink-background-image--loaded: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.2' height='7' viewBox='0 0 11.2 7'%3E%3Cpath d='M1.5 1.5l4.1 4 4.1-4' stroke-width='1.5' stroke='rgb%2811, 135, 218%29' fill='none' stroke-linecap='square' stroke-linejoin='miter' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E"); - --sidebar-nav-pagelink-background-position: 3px center; - --sidebar-nav-pagelink-background-position--active: left center; - --sidebar-nav-pagelink-background-position--collapse: var(--sidebar-nav-pagelink-background-position); - --sidebar-nav-pagelink-background-position--loaded: var(--sidebar-nav-pagelink-background-position--active); - --sidebar-nav-pagelink-padding: 0.25em 0 0.25em 20px; - --sidebar-nav-pagelink-transition: none; - --sidebar-toggle-background: var(--sidebar-border-color); - --sidebar-toggle-border-radius: 0 var(--border-radius-s) var(--border-radius-s) 0; - --sidebar-toggle-width: 32px -} - -:root { - --code-theme-background: #222; - --code-theme-comment: #516e7a; - --code-theme-function: #f07178; - --code-theme-keyword: #c2e78c; - --code-theme-operator: #ffcb6b; - --code-theme-punctuation: #89ddff; - --code-theme-selection: rgba(255, 255, 255, 0.2); - --code-theme-selector: #ffcb6b; - --code-theme-tag: #f07178; - --code-theme-text: #f3f3f3; - --code-theme-variable: #ffcb6b -} - -:root { - --mono-hue: 218; - --mono-saturation: 8%; - --mono-shade3: hsl(var(--mono-hue), var(--mono-saturation), 13%); - --mono-shade2: hsl(var(--mono-hue), var(--mono-saturation), 18%); - --mono-shade1: hsl(var(--mono-hue), var(--mono-saturation), 17%); - --mono-base: hsl(var(--mono-hue), var(--mono-saturation), 23%); - --mono-tint1: hsl(var(--mono-hue), var(--mono-saturation), 25%); - --mono-tint2: hsl(var(--mono-hue), var(--mono-saturation), 35%); - --mono-tint3: hsl(var(--mono-hue), var(--mono-saturation), 43%); - --spinner-track-color: rgba(255, 255, 255, 0.15); - --base-background-color: var(--mono-base); - --base-color: #d3d3d3; - --hr-border: 1px solid var(--mono-tint2); - --mark-background: #ffcb6b; - --mark-color: var(--base-background-color); - --blockquote-background: var(--mono-shade2); - --code-inline-background: var(--mono-tint1); - --code-theme-background: var(--mono-shade2); - --heading-color: #fff; - --heading-h2-border-color: var(--mono-tint2); - --kbd-background: var(--mono-shade2); - --kbd-border: none; - --kbd-color: var(--strong-color); - --notice-important-background: var(--mono-shade2); - --notice-tip-background: var(--mono-shade2); - --table-cell-border-color: var(--mono-tint1); - --table-row-odd-background: var(--mono-shade2); - --cover-background-color: var(--base-background-color); - --cover-background-image: radial-gradient(ellipse at center bottom, var(--mono-tint3), transparent); - --cover-blockquote-color: var(--mark-background); - --cover-button-border: 1px solid var(--mono-tint3); - --cover-button-color: #fff; - --navbar-menu-background: var(--mono-tint1); - --navbar-menu-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 1px, rgba(0, 0, 0, 0.05) 0px 1px 2px, rgba(0, 0, 0, 0.05) 0px 2px 4px, rgba(0, 0, 0, 0.05) 0px 4px 8px, rgba(0, 0, 0, 0.05) 0px 8px 16px, rgba(0, 0, 0, 0.05) 0px 16px 32px; - --copycode-background: var(--mono-tint1); - --copycode-color: #fff; - --docsifytabs-border-color: var(--mono-tint2); - --docsifytabs-tab-background: var(--mono-shade1); - --docsifytabs-tab-color: var(--mono-tint2); - --pagination-border-top: 1px solid var(--mono-tint2); - --pagination-title-color: #fff; - --search-input-background-color: var(--mono-shade2); - --search-input-background-image: url("data:image/svg+xml,%3Csvg height='20px' width='20px' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 255, 255, 0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' preserveAspectRatio='xMidYMid meet' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10.5' cy='10.5' r='7.5' vector-effect='non-scaling-stroke'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='15.8' y2='15.8' vector-effect='non-scaling-stroke'%3E%3C/line%3E%3C/svg%3E"); - --search-input-border-color: var(--mono-tint1); - --search-input-placeholder-color: rgba(255, 255, 255, 0.4); - --search-clear-icon-color1: rgba(255, 255, 255, 0.3); - --sidebar-background: var(--mono-shade1); - --sidebar-border-color: var(--mono-tint1); - --sidebar-nav-pagelink-background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11.2' viewBox='0 0 7 11.2'%3E%3Cpath d='M1.5 1.5l4 4.1 -4 4.1' stroke-width='1.5' stroke='rgb%2873, 93, 104%29' fill='none' stroke-linecap='square' stroke-linejoin='miter' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E") -} - - -/*# sourceMappingURL=theme-simple-dark.css.map */ \ No newline at end of file diff --git a/docs/assets/css/light.css b/docs/assets/css/light.css deleted file mode 100644 index 4da6d73af97..00000000000 --- a/docs/assets/css/light.css +++ /dev/null @@ -1,2253 +0,0 @@ -.github-corner { - position: absolute; - z-index: 40; - top: 0; - right: 0; - border-bottom: 0; - text-decoration: none -} - -.github-corner svg { - height: 70px; - width: 70px; - fill: var(--theme-color); - color: var(--base-background-color) -} - -.github-corner:hover .octo-arm { - -webkit-animation: octocat-wave 560ms ease-in-out; - animation: octocat-wave 560ms ease-in-out -} - -@-webkit-keyframes octocat-wave { - 0%, - 100% { - -webkit-transform: rotate(0); - transform: rotate(0) - } - 20%, - 60% { - -webkit-transform: rotate(-25deg); - transform: rotate(-25deg) - } - 40%, - 80% { - -webkit-transform: rotate(10deg); - transform: rotate(10deg) - } -} - -@keyframes octocat-wave { - 0%, - 100% { - -webkit-transform: rotate(0); - transform: rotate(0) - } - 20%, - 60% { - -webkit-transform: rotate(-25deg); - transform: rotate(-25deg) - } - 40%, - 80% { - -webkit-transform: rotate(10deg); - transform: rotate(10deg) - } -} - -.progress { - position: fixed; - z-index: 60; - top: 0; - left: 0; - right: 0; - height: 3px; - width: 0; - background-color: var(--theme-color); - transition: width var(--duration-fast), opacity calc(var(--duration-fast) * 2) -} - -body.ready-transition:after, -body.ready-transition>*:not(.progress) { - opacity: 0; - transition: opacity var(--spinner-transition-duration) -} - -body.ready-transition:after { - content: ''; - position: absolute; - z-index: 1000; - top: calc(50% - (var(--spinner-size) / 2)); - left: calc(50% - (var(--spinner-size) / 2)); - height: var(--spinner-size); - width: var(--spinner-size); - border: var(--spinner-track-width, 0) solid var(--spinner-track-color); - border-left-color: var(--theme-color); - border-left-color: var(--theme-color); - border-radius: 50%; - -webkit-animation: spinner var(--duration-slow) infinite linear; - animation: spinner var(--duration-slow) infinite linear -} - -body.ready-transition.ready-spinner:after { - opacity: 1 -} - -body.ready-transition.ready-fix:after { - opacity: 0 -} - -body.ready-transition.ready-fix>*:not(.progress) { - opacity: 1; - transition-delay: var(--spinner-transition-duration) -} - -@-webkit-keyframes spinner { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg) - } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -@keyframes spinner { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg) - } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -*, -*:before, -*:after { - box-sizing: inherit; - font-size: inherit; - -webkit-overflow-scrolling: touch; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); - -webkit-text-size-adjust: none; - -webkit-touch-callout: none -} - -:root { - box-sizing: border-box; - background-color: var(--base-background-color); - font-size: var(--base-font-size); - font-weight: var(--base-font-weight); - line-height: var(--base-line-height); - letter-spacing: var(--base-letter-spacing); - color: var(--base-color); - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-smoothing: antialiased -} - -html, -button, -input, -optgroup, -select, -textarea { - font-family: var(--base-font-family) -} - -button, -input, -optgroup, -select, -textarea { - font-size: 100%; - margin: 0 -} - -a { - text-decoration: none; - -webkit-text-decoration-skip: ink; - text-decoration-skip-ink: auto -} - -body { - margin: 0 -} - -hr { - height: 0; - margin: 2em 0; - border: none; - border-bottom: var(--hr-border, 0) -} - -img { - border: 0 -} - -main { - display: block -} - -main.hidden { - display: none -} - -mark { - background: var(--mark-background); - color: var(--mark-color) -} - -pre { - font-family: var(--pre-font-family); - font-size: var(--pre-font-size); - font-weight: var(--pre-font-weight); - line-height: var(--pre-line-height) -} - -small { - display: inline-block; - font-size: var(--small-font-size) -} - -strong { - font-weight: var(--strong-font-weight); - color: var(--strong-color, currentColor) -} - -sub, -sup { - font-size: var(--subsup-font-size); - line-height: 0; - position: relative; - vertical-align: baseline -} - -sub { - bottom: -0.25em -} - -sup { - top: -0.5em -} - -body:not([data-platform^="Mac"]) * { - scrollbar-color: hsla(var(--mono-hue), var(--mono-saturation), 50%, 0.3) hsla(var(--mono-hue), var(--mono-saturation), 50%, 0.1); - scrollbar-width: thin -} - -body:not([data-platform^="Mac"]) *::-webkit-scrollbar { - width: 5px; - height: 5px -} - -body:not([data-platform^="Mac"]) *::-webkit-scrollbar-thumb { - background: hsla(var(--mono-hue), var(--mono-saturation), 50%, 0.3) -} - -body:not([data-platform^="Mac"]) *::-webkit-scrollbar-track { - background: hsla(var(--mono-hue), var(--mono-saturation), 50%, 0.1) -} - -::selection { - background: var(--selection-color) -} - -.emoji { - height: var(--emoji-size); - vertical-align: middle -} - -.task-list-item { - list-style: none -} - -.task-list-item input { - margin-right: 0.5em; - margin-left: 0; - vertical-align: 0.075em -} - -.markdown-section code[class*="lang-"], -.markdown-section pre[data-lang] { - font-family: var(--code-font-family); - font-size: var(--code-font-size); - font-weight: var(--code-font-weight); - letter-spacing: normal; - line-height: var(--code-block-line-height); - -moz-tab-size: var(--code-tab-size); - -o-tab-size: var(--code-tab-size); - tab-size: var(--code-tab-size); - text-align: left; - white-space: pre; - word-spacing: normal; - word-wrap: normal; - word-break: normal; - -webkit-hyphens: none; - -ms-hyphens: none; - hyphens: none -} - -.markdown-section pre[data-lang] { - position: relative; - overflow: hidden; - margin: var(--code-block-margin); - padding: 0; - border-radius: var(--code-block-border-radius) -} - -.markdown-section pre[data-lang]::after { - content: attr(data-lang); - position: absolute; - top: 0.75em; - right: 0.75em; - opacity: 0.6; - color: inherit; - font-size: var(--font-size-s); - line-height: 1 -} - -.markdown-section pre[data-lang] code { - display: block; - overflow: auto; - padding: var(--code-block-padding) -} - -code[class*="lang-"], -pre[data-lang] { - color: var(--code-theme-text) -} - -pre[data-lang]::selection, -pre[data-lang]::selection, -code[class*="lang-"]::selection, -code[class*="lang-"]::selection { - background: var(--code-theme-selection, var(--selection-color)) -} - -:not(pre)>code[class*="lang-"], -pre[data-lang] { - background: var(--code-theme-background) -} - -.namespace { - opacity: 0.7 -} - -.token.comment, -.token.prolog, -.token.doctype, -.token.cdata { - color: var(--code-theme-comment) -} - -.token.punctuation { - color: var(--code-theme-punctuation) -} - -.token.property, -.token.tag, -.token.boolean, -.token.number, -.token.constant, -.token.symbol, -.token.deleted { - color: var(--code-theme-tag) -} - -.token.selector, -.token.attr-name, -.token.string, -.token.char, -.token.builtin, -.token.inserted { - color: var(--code-theme-selector) -} - -.token.operator, -.token.entity, -.token.url, -.language-css .token.string, -.style .token.string { - color: var(--code-theme-operator) -} - -.token.atrule, -.token.attr-value, -.token.keyword { - color: var(--code-theme-keyword) -} - -.token.function { - color: var(--code-theme-function) -} - -.token.regex, -.token.important, -.token.variable { - color: var(--code-theme-variable) -} - -.token.important, -.token.bold { - font-weight: bold -} - -.token.italic { - font-style: italic -} - -.token.entity { - cursor: help -} - -.markdown-section { - position: relative; - max-width: var(--content-max-width); - margin: 0 auto; - padding: 2rem 45px -} - -.app-nav:not(:empty) ~ main .markdown-section { - padding-top: 3.5rem -} - -.markdown-section figure, -.markdown-section p, -.markdown-section ol, -.markdown-section ul { - margin: 1em 0 -} - -.markdown-section ol, -.markdown-section ul { - padding-left: 1.5rem -} - -.markdown-section ol ol, -.markdown-section ol ul, -.markdown-section ul ol, -.markdown-section ul ul { - margin-top: 0.15rem; - margin-bottom: 0.15rem -} - -.markdown-section a { - border-bottom: var(--link-border-bottom); - color: var(--link-color); - -webkit-text-decoration: var(--link-text-decoration); - text-decoration: var(--link-text-decoration); - -webkit-text-decoration-color: var(--link-text-decoration-color); - text-decoration-color: var(--link-text-decoration-color) -} - -.markdown-section a:hover { - border-bottom: var(--link-border-bottom--hover, var(--link-border-bottom, 0)); - color: var(--link-color--hover, var(--link-color)); - -webkit-text-decoration: var(--link-text-decoration--hover, var(--link-text-decoration)); - text-decoration: var(--link-text-decoration--hover, var(--link-text-decoration)); - -webkit-text-decoration-color: var(--link-text-decoration-color--hover, var(--link-text-decoration-color)); - text-decoration-color: var(--link-text-decoration-color--hover, var(--link-text-decoration-color)) -} - -.markdown-section a.anchor { - border-bottom: 0; - color: inherit; - text-decoration: none -} - -.markdown-section a.anchor:hover { - text-decoration: underline -} - -.markdown-section blockquote { - overflow: visible; - margin: 2em 0; - padding: 1.5em; - border-width: var(--blockquote-border-width, 0); - border-style: var(--blockquote-border-style); - border-color: var(--blockquote-border-color); - border-radius: var(--blockquote-border-radius); - background: var(--blockquote-background); - color: var(--blockquote-color); - font-family: var(--blockquote-font-family); - font-size: var(--blockquote-font-size); - font-style: var(--blockquote-font-style); - font-weight: var(--blockquote-font-weight); - quotes: "“" "”" "‘" "’" -} - -.markdown-section blockquote em { - font-family: var(--blockquote-em-font-family); - font-size: var(--blockquote-em-font-size); - font-style: var(--blockquote-em-font-style); - font-weight: var(--blockquote-em-font-weight) -} - -.markdown-section blockquote p:first-child { - margin-top: 0 -} - -.markdown-section blockquote p:first-child:before, -.markdown-section blockquote p:first-child:after { - color: var(--blockquote-quotes-color); - font-family: var(--blockquote-quotes-font-family); - font-size: var(--blockquote-quotes-font-size); - line-height: 0 -} - -.markdown-section blockquote p:first-child:before { - content: var(--blockquote-quotes-open); - margin-right: 0.15em; - vertical-align: -0.45em -} - -.markdown-section blockquote p:first-child:after { - content: var(--blockquote-quotes-close); - margin-left: 0.15em; - vertical-align: -0.55em -} - -.markdown-section blockquote p:last-child { - margin-bottom: 0 -} - -.markdown-section code { - font-family: var(--code-font-family); - font-size: var(--code-font-size); - font-weight: var(--code-font-weight); - line-height: inherit -} - -.markdown-section code:not([class*="lang-"]):not([class*="language-"]) { - margin: var(--code-inline-margin); - padding: var(--code-inline-padding); - border-radius: var(--code-inline-border-radius); - background: var(--code-inline-background); - color: var(--code-inline-color, currentColor); - white-space: nowrap -} - -.markdown-section h1:first-child, -.markdown-section h2:first-child, -.markdown-section h3:first-child, -.markdown-section h4:first-child, -.markdown-section h5:first-child, -.markdown-section h6:first-child { - margin-top: 0 -} - -.markdown-section h1+h2, -.markdown-section h1+h3, -.markdown-section h1+h4, -.markdown-section h1+h5, -.markdown-section h1+h6, -.markdown-section h2+h3, -.markdown-section h2+h4, -.markdown-section h2+h5, -.markdown-section h2+h6, -.markdown-section h3+h4, -.markdown-section h3+h5, -.markdown-section h3+h6, -.markdown-section h4+h5, -.markdown-section h4+h6, -.markdown-section h5+h6 { - margin-top: 1rem -} - -.markdown-section h1 { - margin: var(--heading-h1-margin, var(--heading-margin)); - padding: var(--heading-h1-padding, var(--heading-padding)); - border-width: var(--heading-h1-border-width, 0); - border-style: var(--heading-h1-border-style); - border-color: var(--heading-h1-border-color); - font-family: var(--heading-h1-font-family, var(--heading-font-family)); - font-size: var(--heading-h1-font-size); - font-weight: var(--heading-h1-font-weight, var(--heading-font-weight)); - line-height: var(--base-line-height); - color: var(--heading-h1-color, var(--heading-color)) -} - -.markdown-section h2 { - margin: var(--heading-h2-margin, var(--heading-margin)); - padding: var(--heading-h2-padding, var(--heading-padding)); - border-width: var(--heading-h2-border-width, 0); - border-style: var(--heading-h2-border-style); - border-color: var(--heading-h2-border-color); - font-family: var(--heading-h2-font-family, var(--heading-font-family)); - font-size: var(--heading-h2-font-size); - font-weight: var(--heading-h2-font-weight, var(--heading-font-weight)); - line-height: var(--base-line-height); - color: var(--heading-h2-color, var(--heading-color)) -} - -.markdown-section h3 { - margin: var(--heading-h3-margin, var(--heading-margin)); - padding: var(--heading-h3-padding, var(--heading-padding)); - border-width: var(--heading-h3-border-width, 0); - border-style: var(--heading-h3-border-style); - border-color: var(--heading-h3-border-color); - font-family: var(--heading-h3-font-family, var(--heading-font-family)); - font-size: var(--heading-h3-font-size); - font-weight: var(--heading-h3-font-weight, var(--heading-font-weight)); - color: var(--heading-h3-color, var(--heading-color)) -} - -.markdown-section h4 { - margin: var(--heading-h4-margin, var(--heading-margin)); - padding: var(--heading-h4-padding, var(--heading-padding)); - border-width: var(--heading-h4-border-width, 0); - border-style: var(--heading-h4-border-style); - border-color: var(--heading-h4-border-color); - font-family: var(--heading-h4-font-family, var(--heading-font-family)); - font-size: var(--heading-h4-font-size); - font-weight: var(--heading-h4-font-weight, var(--heading-font-weight)); - color: var(--heading-h4-color, var(--heading-color)) -} - -.markdown-section h5 { - margin: var(--heading-h5-margin, var(--heading-margin)); - padding: var(--heading-h5-padding, var(--heading-padding)); - border-width: var(--heading-h5-border-width, 0); - border-style: var(--heading-h5-border-style); - border-color: var(--heading-h5-border-color); - font-family: var(--heading-h5-font-family, var(--heading-font-family)); - font-size: var(--heading-h5-font-size); - font-weight: var(--heading-h5-font-weight, var(--heading-font-weight)); - color: var(--heading-h5-color, var(--heading-color)) -} - -.markdown-section h6 { - margin: var(--heading-h6-margin, var(--heading-margin)); - padding: var(--heading-h6-padding, var(--heading-padding)); - border-width: var(--heading-h6-border-width, 0); - border-style: var(--heading-h6-border-style); - border-color: var(--heading-h6-border-color); - font-family: var(--heading-h6-font-family, var(--heading-font-family)); - font-size: var(--heading-h6-font-size); - font-weight: var(--heading-h6-font-weight, var(--heading-font-weight)); - color: var(--heading-h6-color, var(--heading-color)) -} - -.markdown-section iframe { - margin: 1em 0 -} - -.markdown-section img { - max-width: 100% -} - -.markdown-section kbd { - display: inline-block; - min-width: var(--kbd-min-width); - margin: var(--kbd-margin); - padding: var(--kbd-padding); - border: var(--kbd-border); - border-radius: var(--kbd-border-radius); - background: var(--kbd-background); - font-family: inherit; - font-size: var(--kbd-font-size); - text-align: center; - letter-spacing: 0; - line-height: 1; - color: var(--kbd-color) -} - -.markdown-section kbd+kbd { - margin-left: -0.15em -} - -.markdown-section table { - display: block; - overflow: auto; - margin: 1rem 0; - border-spacing: 0; - border-collapse: collapse -} - -.markdown-section th, -.markdown-section td { - padding: var(--table-cell-padding) -} - -.markdown-section th:not([align]) { - text-align: left -} - -.markdown-section thead { - border-color: var(--table-head-border-color); - border-style: solid; - border-width: var(--table-head-border-width, 0); - background: var(--table-head-background) -} - -.markdown-section th { - font-weight: var(--table-head-font-weight); - color: var(--strong-color) -} - -.markdown-section td { - border-color: var(--table-cell-border-color); - border-style: solid; - border-width: var(--table-cell-border-width, 0) -} - -.markdown-section tbody { - border-color: var(--table-body-border-color); - border-style: solid; - border-width: var(--table-body-border-width, 0) -} - -.markdown-section tbody tr:nth-child(odd) { - background: var(--table-row-odd-background) -} - -.markdown-section tbody tr:nth-child(even) { - background: var(--table-row-even-background) -} - -.markdown-section>ul .task-list-item { - margin-left: -1.25em -} - -.markdown-section>ul .task-list-item .task-list-item { - margin-left: 0 -} - -.markdown-section .table-wrapper table { - display: table; - width: 100% -} - -.markdown-section .table-wrapper td::before { - display: none -} - -@media (max-width: 30em) { - .markdown-section .table-wrapper tbody, - .markdown-section .table-wrapper tr, - .markdown-section .table-wrapper td { - display: block - } - .markdown-section .table-wrapper th, - .markdown-section .table-wrapper td { - border: none - } - .markdown-section .table-wrapper thead { - display: none - } - .markdown-section .table-wrapper tr { - border-color: var(--table-cell-border-color); - border-style: solid; - border-width: var(--table-cell-border-width, 0); - padding: var(--table-cell-padding) - } - .markdown-section .table-wrapper tr:not(:last-child) { - border-bottom: 0 - } - .markdown-section .table-wrapper td { - display: flex; - padding: 0.15em 0 - } - .markdown-section .table-wrapper td::before { - display: block; - min-width: 8em; - max-width: 8em; - font-weight: bold; - text-align: left - } -} - -.markdown-section .tip, -.markdown-section .warn { - position: relative; - margin: 2em 0; - padding: var(--notice-padding); - border-width: var(--notice-border-width, 0); - border-style: var(--notice-border-style); - border-color: var(--notice-border-color); - border-radius: var(--notice-border-radius); - background: var(--notice-background); - font-family: var(--notice-font-family); - font-weight: var(--notice-font-weight); - color: var(--notice-color) -} - -.markdown-section .tip:before, -.markdown-section .warn:before { - display: inline-block; - position: var(--notice-before-position, relative); - top: var(--notice-before-top); - left: var(--notice-before-left); - height: var(--notice-before-height); - width: var(--notice-before-width); - margin: var(--notice-before-margin); - padding: var(--notice-before-padding); - border-radius: var(--notice-before-border-radius); - line-height: var(--notice-before-line-height); - font-family: var(--notice-before-font-family); - font-size: var(--notice-before-font-size); - font-weight: var(--notice-before-font-weight); - text-align: center -} - -.markdown-section .tip { - border-width: var(--notice-important-border-width, var(--notice-border-width, 0)); - border-style: var(--notice-important-border-style, var(--notice-border-style)); - border-color: var(--notice-important-border-color, var(--notice-border-color)); - background: var(--notice-important-background, var(--notice-background)); - color: var(--notice-important-color, var(--notice-color)) -} - -.markdown-section .tip:before { - content: var(--notice-important-before-content, var(--notice-before-content)); - background: var(--notice-important-before-background, var(--notice-before-background)); - color: var(--notice-important-before-color, var(--notice-before-color)) -} - -.markdown-section .warn { - border-width: var(--notice-tip-border-width, var(--notice-border-width, 0)); - border-style: var(--notice-tip-border-style, var(--notice-border-style)); - border-color: var(--notice-tip-border-color, var(--notice-border-color)); - background: var(--notice-tip-background, var(--notice-background)); - color: var(--notice-tip-color, var(--notice-color)) -} - -.markdown-section .warn:before { - content: var(--notice-tip-before-content, var(--notice-before-content)); - background: var(--notice-tip-before-background, var(--notice-before-background)); - color: var(--notice-tip-before-color, var(--notice-before-color)) -} - -.cover { - display: none; - position: relative; - z-index: 20; - min-height: 100vh; - flex-direction: column; - align-items: center; - justify-content: center; - padding: calc(var(--cover-border-inset, 0px) + var(--cover-border-width, 0px)); - color: var(--cover-color); - text-align: var(--cover-text-align) -} - -@media screen and (-ms-high-contrast: active), -screen and (-ms-high-contrast: none) { - .cover { - height: 100vh - } -} - -.cover:before, -.cover:after { - content: ''; - position: absolute -} - -.cover:before { - top: 0; - bottom: 0; - left: 0; - right: 0; - background-blend-mode: var(--cover-background-blend-mode); - background-color: var(--cover-background-color); - background-image: var(--cover-background-image); - background-position: var(--cover-background-position); - background-repeat: var(--cover-background-repeat); - background-size: var(--cover-background-size) -} - -.cover:after { - top: var(--cover-border-inset, 0); - bottom: var(--cover-border-inset, 0); - left: var(--cover-border-inset, 0); - right: var(--cover-border-inset, 0); - border-width: var(--cover-border-width, 0); - border-style: solid; - border-color: var(--cover-border-color) -} - -.cover a { - border-bottom: var(--cover-link-border-bottom); - color: var(--cover-link-color); - -webkit-text-decoration: var(--cover-link-text-decoration); - text-decoration: var(--cover-link-text-decoration); - -webkit-text-decoration-color: var(--cover-link-text-decoration-color); - text-decoration-color: var(--cover-link-text-decoration-color) -} - -.cover a:hover { - border-bottom: var(--cover-link-border-bottom--hover, var(--cover-link-border-bottom)); - color: var(--cover-link-color--hover, var(--cover-link-color)); - -webkit-text-decoration: var(--cover-link-text-decoration--hover, var(--cover-link-text-decoration)); - text-decoration: var(--cover-link-text-decoration--hover, var(--cover-link-text-decoration)); - -webkit-text-decoration-color: var(--cover-link-text-decoration-color--hover, var(--cover-link-text-decoration-color)); - text-decoration-color: var(--cover-link-text-decoration-color--hover, var(--cover-link-text-decoration-color)) -} - -.cover h1 { - color: var(--cover-heading-color); - position: relative; - margin: 0; - font-size: var(--cover-heading-font-size); - font-weight: var(--cover-heading-font-weight); - line-height: 1.2 -} - -.cover h1 a, -.cover h1 a:hover { - display: block; - border-bottom: none; - color: inherit; - text-decoration: none -} - -.cover h1 small { - position: absolute; - bottom: 0; - margin-left: 0.5em -} - -.cover h1 span { - font-size: calc(var(--cover-heading-font-size-min) * 1px) -} - -@media (min-width: 26em) { - .cover h1 span { - font-size: calc((var(--cover-heading-font-size-min) * 1px) + (var(--cover-heading-font-size-max) - var(--cover-heading-font-size-min)) * ((100vw - 420px) / (1024 - 420))) - } -} - -@media (min-width: 64em) { - .cover h1 span { - font-size: calc(var(--cover-heading-font-size-max) * 1px) - } -} - -.cover blockquote { - margin: 0; - color: var(--cover-blockquote-color); - font-size: var(--cover-blockquote-font-size) -} - -.cover blockquote a { - color: inherit -} - -.cover ul { - padding: 0; - list-style-type: none -} - -.cover .cover-main { - position: relative; - z-index: 1; - max-width: var(--cover-max-width); - margin: var(--cover-margin); - padding: 0 45px -} - -.cover .cover-main>p:last-child { - margin: 1.25em -.25em -} - -.cover .cover-main>p:last-child a { - display: block; - margin: .375em .25em; - padding: var(--cover-button-padding); - border: var(--cover-button-border); - border-radius: var(--cover-button-border-radius); - box-shadow: var(--cover-button-box-shadow); - background: var(--cover-button-background); - text-align: center; - -webkit-text-decoration: var(--cover-button-text-decoration); - text-decoration: var(--cover-button-text-decoration); - -webkit-text-decoration-color: var(--cover-button-text-decoration-color); - text-decoration-color: var(--cover-button-text-decoration-color); - color: var(--cover-button-color); - white-space: nowrap; - transition: var(--cover-button-transition) -} - -.cover .cover-main>p:last-child a:hover { - border: var(--cover-button-border--hover, var(--cover-button-border)); - box-shadow: var(--cover-button-box-shadow--hover, var(--cover-button-box-shadow)); - background: var(--cover-button-background--hover, var(--cover-button-background)); - -webkit-text-decoration: var(--cover-button-text-decoration--hover, var(--cover-button-text-decoration)); - text-decoration: var(--cover-button-text-decoration--hover, var(--cover-button-text-decoration)); - -webkit-text-decoration-color: var(--cover-button-text-decoration-color--hover, var(--cover-button-text-decoration-color)); - text-decoration-color: var(--cover-button-text-decoration-color--hover, var(--cover-button-text-decoration-color)); - color: var(--cover-button-color--hover, var(--cover-button-color)) -} - -.cover .cover-main>p:last-child a:first-child { - border: var(--cover-button-primary-border, var(--cover-button-border)); - box-shadow: var(--cover-button-primary-box-shadow, var(--cover-button-box-shadow)); - background: var(--cover-button-primary-background, var(--cover-button-background)); - -webkit-text-decoration: var(--cover-button-primary-text-decoration, var(--cover-button-text-decoration)); - text-decoration: var(--cover-button-primary-text-decoration, var(--cover-button-text-decoration)); - -webkit-text-decoration-color: var(--cover-button-primary-text-decoration-color, var(--cover-button-text-decoration-color)); - text-decoration-color: var(--cover-button-primary-text-decoration-color, var(--cover-button-text-decoration-color)); - color: var(--cover-button-primary-color, var(--cover-button-color)) -} - -.cover .cover-main>p:last-child a:first-child:hover { - border: var(--cover-button-primary-border--hover, var(--cover-button-border--hover, var(--cover-button-primary-border, var(--cover-button-border)))); - box-shadow: var(--cover-button-primary-box-shadow--hover, var(--cover-button-box-shadow--hover, var(--cover-button-primary-box-shadow, var(--cover-button-box-shadow)))); - background: var(--cover-button-primary-background--hover, var(--cover-button-background--hover, var(--cover-button-primary-background, var(--cover-button-background)))); - -webkit-text-decoration: var(--cover-button-primary-text-decoration--hover, var(--cover-button-text-decoration--hover, var(--cover-button-primary-text-decoration, var(--cover-button-text-decoration)))); - text-decoration: var(--cover-button-primary-text-decoration--hover, var(--cover-button-text-decoration--hover, var(--cover-button-primary-text-decoration, var(--cover-button-text-decoration)))); - -webkit-text-decoration-color: var(--cover-button-primary-text-decoration-color--hover, var(--cover-button-text-decoration-color--hover, var(--cover-button-primary-text-decoration-color, var(--cover-button-text-decoration-color)))); - text-decoration-color: var(--cover-button-primary-text-decoration-color--hover, var(--cover-button-text-decoration-color--hover, var(--cover-button-primary-text-decoration-color, var(--cover-button-text-decoration-color)))); - color: var(--cover-button-primary-color--hover, var(--cover-button-color--hover, var(--cover-button-primary-color, var(--cover-button-color)))) -} - -@media (min-width: 30.01em) { - .cover .cover-main>p:last-child a { - display: inline-block - } -} - -.cover .mask { - visibility: var(--cover-background-mask-visibility, hidden); - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - background-color: var(--cover-background-mask-color); - opacity: var(--cover-background-mask-opacity) -} - -.cover.has-mask .mask { - visibility: visible -} - -.cover.show { - display: flex -} - -.app-nav { - position: absolute; - z-index: 30; - top: calc(35px - (0.5em * var(--base-line-height))); - left: 45px; - right: 80px; - text-align: right -} - -.app-nav.no-badge { - right: 21px -} - -.app-nav li>img, -.app-nav li>a>img { - margin-top: -0.25em; - vertical-align: middle -} - -.app-nav li>img:first-child, -.app-nav li>a>img:first-child { - margin-right: -0.25em -} - -.app-nav ul, -.app-nav li { - margin: 0; - padding: 0; - list-style: none -} - -.app-nav li { - position: relative -} - -.app-nav li a { - display: block; - line-height: 1; - transition: var(--navbar-root-transition) -} - -.app-nav>ul>li { - display: inline-block; - margin: var(--navbar-root-margin) -} - -.app-nav>ul>li:first-child { - margin-left: 0 -} - -.app-nav>ul>li:last-child { - margin-right: 0 -} - -.app-nav>ul>li>a, -.app-nav>ul>li>span { - padding: var(--navbar-root-padding); - border-width: var(--navbar-root-border-width, 0); - border-style: var(--navbar-root-border-style); - border-color: var(--navbar-root-border-color); - border-radius: var(--navbar-root-border-radius); - background: var(--navbar-root-background); - color: var(--navbar-root-color); - -webkit-text-decoration: var(--navbar-root-text-decoration); - text-decoration: var(--navbar-root-text-decoration); - -webkit-text-decoration-color: var(--navbar-root-text-decoration-color); - text-decoration-color: var(--navbar-root-text-decoration-color) -} - -.app-nav>ul>li>a:hover, -.app-nav>ul>li>span:hover { - background: var(--navbar-root-background--hover, var(--navbar-root-background)); - border-style: var(--navbar-root-border-style--hover, var(--navbar-root-border-style)); - border-color: var(--navbar-root-border-color--hover, var(--navbar-root-border-color)); - color: var(--navbar-root-color--hover, var(--navbar-root-color)); - -webkit-text-decoration: var(--navbar-root-text-decoration--hover, var(--navbar-root-text-decoration)); - text-decoration: var(--navbar-root-text-decoration--hover, var(--navbar-root-text-decoration)); - -webkit-text-decoration-color: var(--navbar-root-text-decoration-color--hover, var(--navbar-root-text-decoration-color)); - text-decoration-color: var(--navbar-root-text-decoration-color--hover, var(--navbar-root-text-decoration-color)) -} - -.app-nav>ul>li>a:not(:last-child), -.app-nav>ul>li>span:not(:last-child) { - padding: var(--navbar-menu-root-padding, var(--navbar-root-padding)); - background: var(--navbar-menu-root-background, var(--navbar-root-background)) -} - -.app-nav>ul>li>a:not(:last-child):hover, -.app-nav>ul>li>span:not(:last-child):hover { - background: var(--navbar-menu-root-background--hover, var(--navbar-menu-root-background, var(--navbar-root-background--hover, var(--navbar-root-background)))) -} - -.app-nav>ul>li>a.active { - background: var(--navbar-root-background--active, var(--navbar-root-background)); - border-style: var(--navbar-root-border-style--active, var(--navbar-root-border-style)); - border-color: var(--navbar-root-border-color--active, var(--navbar-root-border-color)); - color: var(--navbar-root-color--active, var(--navbar-root-color)); - -webkit-text-decoration: var(--navbar-root-text-decoration--active, var(--navbar-root-text-decoration)); - text-decoration: var(--navbar-root-text-decoration--active, var(--navbar-root-text-decoration)); - -webkit-text-decoration-color: var(--navbar-root-text-decoration-color--active, var(--navbar-root-text-decoration-color)); - text-decoration-color: var(--navbar-root-text-decoration-color--active, var(--navbar-root-text-decoration-color)) -} - -.app-nav>ul>li>a.active:not(:last-child):hover { - background: var(--navbar-menu-root-background--active, var(--navbar-menu-root-background, var(--navbar-root-background--active, var(--navbar-root-background)))) -} - -.app-nav>ul>li ul { - visibility: hidden; - position: absolute; - top: 100%; - right: 50%; - overflow-y: auto; - box-sizing: border-box; - max-height: calc(50vh); - padding: var(--navbar-menu-padding); - border-width: var(--navbar-menu-border-width, 0); - border-style: solid; - border-color: var(--navbar-menu-border-color); - border-radius: var(--navbar-menu-border-radius); - background: var(--navbar-menu-background); - box-shadow: var(--navbar-menu-box-shadow); - text-align: left; - white-space: nowrap; - opacity: 0; - -webkit-transform: translate(50%, -0.35em); - transform: translate(50%, -0.35em); - transition: var(--navbar-menu-transition) -} - -.app-nav>ul>li ul li { - white-space: nowrap -} - -.app-nav>ul>li ul a { - margin: var(--navbar-menu-link-margin); - padding: var(--navbar-menu-link-padding); - border-width: var(--navbar-menu-link-border-width, 0); - border-style: var(--navbar-menu-link-border-style); - border-color: var(--navbar-menu-link-border-color); - border-radius: var(--navbar-menu-link-border-radius); - background: var(--navbar-menu-link-background); - color: var(--navbar-menu-link-color); - -webkit-text-decoration: var(--navbar-menu-link-text-decoration); - text-decoration: var(--navbar-menu-link-text-decoration); - -webkit-text-decoration-color: var(--navbar-menu-link-text-decoration-color); - text-decoration-color: var(--navbar-menu-link-text-decoration-color) -} - -.app-nav>ul>li ul a:hover { - background: var(--navbar-menu-link-background--hover, var(--navbar-menu-link-background)); - border-style: var(--navbar-menu-link-border-style--hover, var(--navbar-menu-link-border-style)); - border-color: var(--navbar-menu-link-border-color--hover, var(--navbar-menu-link-border-color)); - color: var(--navbar-menu-link-color--hover, var(--navbar-menu-link-color)); - -webkit-text-decoration: var(--navbar-menu-link-text-decoration--hover, var(--navbar-menu-link-text-decoration)); - text-decoration: var(--navbar-menu-link-text-decoration--hover, var(--navbar-menu-link-text-decoration)); - -webkit-text-decoration-color: var(--navbar-menu-link-text-decoration-color--hover, var(--navbar-menu-link-text-decoration-color)); - text-decoration-color: var(--navbar-menu-link-text-decoration-color--hover, var(--navbar-menu-link-text-decoration-color)) -} - -.app-nav>ul>li ul a.active { - background: var(--navbar-menu-link-background--active, var(--navbar-menu-link-background)); - border-style: var(--navbar-menu-link-border-style--active, var(--navbar-menu-link-border-style)); - border-color: var(--navbar-menu-link-border-color--active, var(--navbar-menu-link-border-color)); - color: var(--navbar-menu-link-color--active, var(--navbar-menu-link-color)); - -webkit-text-decoration: var(--navbar-menu-link-text-decoration--active, var(--navbar-menu-link-text-decoration)); - text-decoration: var(--navbar-menu-link-text-decoration--active, var(--navbar-menu-link-text-decoration)); - -webkit-text-decoration-color: var(--navbar-menu-link-text-decoration-color--active, var(--navbar-menu-link-text-decoration-color)); - text-decoration-color: var(--navbar-menu-link-text-decoration-color--active, var(--navbar-menu-link-text-decoration-color)) -} - -.app-nav>ul>li:hover ul, -.app-nav>ul>li:focus ul, -.app-nav>ul>li.focus-within ul { - visibility: visible; - opacity: 1; - -webkit-transform: translate(50%, 0); - transform: translate(50%, 0) -} - -.sidebar, -.sidebar-toggle, -main>.content { - transition: all var(--sidebar-transition-duration) ease-out -} - -@media (min-width: 48em) { - nav.app-nav { - margin-left: var(--sidebar-width) - } -} - -main { - position: relative; - overflow-x: hidden; - min-height: 100vh -} - -@media (min-width: 48em) { - main>.content { - margin-left: var(--sidebar-width) - } -} - -.sidebar { - display: flex; - flex-direction: column; - position: fixed; - z-index: 10; - top: 0; - right: 100%; - overflow-x: hidden; - overflow-y: auto; - height: 100vh; - width: var(--sidebar-width); - padding: var(--sidebar-padding); - border-width: var(--sidebar-border-width); - border-style: solid; - border-color: var(--sidebar-border-color); - background: var(--sidebar-background) -} - -.sidebar>h1 { - margin: 0; - margin: var(--sidebar-name-margin); - padding: var(--sidebar-name-padding); - background: var(--sidebar-name-background); - color: var(--sidebar-name-color); - font-family: var(--sidebar-name-font-family); - font-size: var(--sidebar-name-font-size); - font-weight: var(--sidebar-name-font-weight); - text-align: var(--sidebar-name-text-align) -} - -.sidebar>h1 img { - max-width: 100% -} - -.sidebar>h1 .app-name-link { - color: var(--sidebar-name-color) -} - -body:not([data-platform^="Mac"]) .sidebar::-webkit-scrollbar { - width: 5px -} - -body:not([data-platform^="Mac"]) .sidebar::-webkit-scrollbar-thumb { - border-radius: 50vw -} - -@media (min-width: 48em) { - .sidebar { - position: absolute; - -webkit-transform: translateX(var(--sidebar-width)); - transform: translateX(var(--sidebar-width)) - } -} - -@media print { - .sidebar { - display: none - } -} - -.sidebar-nav, -.sidebar nav { - order: 1; - margin: var(--sidebar-nav-margin); - padding: var(--sidebar-nav-padding); - background: var(--sidebar-nav-background) -} - -.sidebar-nav ul, -.sidebar nav ul { - margin: 0; - padding: 0; - list-style: none -} - -.sidebar-nav ul ul, -.sidebar nav ul ul { - margin-left: var(--sidebar-nav-indent) -} - -.sidebar-nav a, -.sidebar nav a { - display: block; - overflow: hidden; - margin: var(--sidebar-nav-link-margin); - padding: var(--sidebar-nav-link-padding); - border-width: var(--sidebar-nav-link-border-width, 0); - border-style: var(--sidebar-nav-link-border-style); - border-color: var(--sidebar-nav-link-border-color); - border-radius: var(--sidebar-nav-link-border-radius); - background-color: var(--sidebar-nav-link-background-color); - background-image: var(--sidebar-nav-link-background-image); - background-position: var(--sidebar-nav-link-background-position); - background-repeat: var(--sidebar-nav-link-background-repeat); - background-size: var(--sidebar-nav-link-background-size); - color: var(--sidebar-nav-link-color); - font-weight: var(--sidebar-nav-link-font-weight); - white-space: nowrap; - -webkit-text-decoration: var(--sidebar-nav-link-text-decoration); - text-decoration: var(--sidebar-nav-link-text-decoration); - -webkit-text-decoration-color: var(--sidebar-nav-link-text-decoration-color); - text-decoration-color: var(--sidebar-nav-link-text-decoration-color); - text-overflow: ellipsis; - transition: var(--sidebar-nav-link-transition) -} - -.sidebar-nav a img, -.sidebar nav a img { - margin-top: -0.25em; - vertical-align: middle -} - -.sidebar-nav a img:first-child, -.sidebar nav a img:first-child { - margin-right: 0.5em -} - -.sidebar-nav a:hover, -.sidebar nav a:hover { - border-width: var(--sidebar-nav-link-border-width--hover, var(--sidebar-nav-link-border-width, 0)); - border-style: var(--sidebar-nav-link-border-style--hover, var(--sidebar-nav-link-border-style)); - border-color: var(--sidebar-nav-link-border-color--hover, var(--sidebar-nav-link-border-color)); - background-color: var(--sidebar-nav-link-background-color--hover, var(--sidebar-nav-link-background-color)); - background-image: var(--sidebar-nav-link-background-image--hover, var(--sidebar-nav-link-background-image)); - background-position: var(--sidebar-nav-link-background-position--hover, var(--sidebar-nav-link-background-position)); - background-size: var(--sidebar-nav-link-background-size--hover, var(--sidebar-nav-link-background-size)); - color: var(--sidebar-nav-link-color--hover, var(--sidebar-nav-link-color)); - font-weight: var(--sidebar-nav-link-font-weight--hover, var(--sidebar-nav-link-font-weight)); - -webkit-text-decoration: var(--sidebar-nav-link-text-decoration--hover, var(--sidebar-nav-link-text-decoration)); - text-decoration: var(--sidebar-nav-link-text-decoration--hover, var(--sidebar-nav-link-text-decoration)); - -webkit-text-decoration-color: var(--sidebar-nav-link-text-decoration-color); - text-decoration-color: var(--sidebar-nav-link-text-decoration-color) -} - -.sidebar-nav ul>li>span, -.sidebar-nav ul>li>strong, -.sidebar nav ul>li>span, -.sidebar nav ul>li>strong { - display: block; - margin: var(--sidebar-nav-strong-margin); - padding: var(--sidebar-nav-strong-padding); - border-width: var(--sidebar-nav-strong-border-width, 0); - border-style: solid; - border-color: var(--sidebar-nav-strong-border-color); - color: var(--sidebar-nav-strong-color); - font-size: var(--sidebar-nav-strong-font-size); - font-weight: var(--sidebar-nav-strong-font-weight); - text-transform: var(--sidebar-nav-strong-text-transform) -} - -.sidebar-nav ul>li>span+ul, -.sidebar-nav ul>li>strong+ul, -.sidebar nav ul>li>span+ul, -.sidebar nav ul>li>strong+ul { - margin-left: 0 -} - -.sidebar-nav ul>li:first-child>span, -.sidebar-nav ul>li:first-child>strong, -.sidebar nav ul>li:first-child>span, -.sidebar nav ul>li:first-child>strong { - margin-top: 0 -} - -.sidebar-nav::-webkit-scrollbar, -.sidebar nav::-webkit-scrollbar { - width: 0 -} - -@supports (width: env(safe-area-inset)) { - @media only screen and (orientation: landscape) { - .sidebar-nav, .sidebar nav { - margin-left: calc(env(safe-area-inset-left) / 2) - } - } -} - -.sidebar-nav li>a:before, -.sidebar-nav li>strong:before { - display: inline-block -} - -.sidebar-nav li>a { - background-repeat: var(--sidebar-nav-pagelink-background-repeat); - background-size: var(--sidebar-nav-pagelink-background-size) -} - -.sidebar-nav li>a[href^="#/"]:not([href*="?id="]) { - transition: var(--sidebar-nav-pagelink-transition) -} - -.sidebar-nav li>a[href^="#/"]:not([href*="?id="]), -.sidebar-nav li>a[href^="#/"]:not([href*="?id="]) ~ ul a { - padding: var(--sidebar-nav-pagelink-padding, var(--sidebar-nav-link-padding)) -} - -.sidebar-nav li>a[href^="#/"]:not([href*="?id="]):only-child { - background-image: var(--sidebar-nav-pagelink-background-image); - background-position: var(--sidebar-nav-pagelink-background-position) -} - -.sidebar-nav li>a[href^="#/"]:not([href*="?id="]):not(:only-child) { - background-image: var(--sidebar-nav-pagelink-background-image--loaded, var(--sidebar-nav-pagelink-background-image)); - background-position: var(--sidebar-nav-pagelink-background-position--loaded, var(--sidebar-nav-pagelink-background-image)) -} - -.sidebar-nav li.active>a, -.sidebar-nav li.collapse>a { - border-width: var(--sidebar-nav-link-border-width--active, var(--sidebar-nav-link-border-width)); - border-style: var(--sidebar-nav-link-border-style--active, var(--sidebar-nav-link-border-style)); - border-color: var(--sidebar-nav-link-border-color--active, var(--sidebar-nav-link-border-color)); - background-color: var(--sidebar-nav-link-background-color--active, var(--sidebar-nav-link-background-color)); - background-image: var(--sidebar-nav-link-background-image--active, var(--sidebar-nav-link-background-image)); - background-position: var(--sidebar-nav-link-background-position--active, var(--sidebar-nav-link-background-position)); - background-size: var(--sidebar-nav-link-background-size--active, var(--sidebar-nav-link-background-size)); - color: var(--sidebar-nav-link-color--active, var(--sidebar-nav-link-color)); - font-weight: var(--sidebar-nav-link-font-weight--active, var(--sidebar-nav-link-font-weight)); - -webkit-text-decoration: var(--sidebar-nav-link-text-decoration--active, var(--sidebar-nav-link-text-decoration)); - text-decoration: var(--sidebar-nav-link-text-decoration--active, var(--sidebar-nav-link-text-decoration)); - -webkit-text-decoration-color: var(--sidebar-nav-link-text-decoration-color); - text-decoration-color: var(--sidebar-nav-link-text-decoration-color) -} - -.sidebar-nav li.active>a[href^="#/"]:not([href*="?id="]):not(:only-child) { - background-image: var(--sidebar-nav-pagelink-background-image--active, var(--sidebar-nav-pagelink-background-image--loaded, var(--sidebar-nav-pagelink-background-image))); - background-position: var(--sidebar-nav-pagelink-background-position--active, var(--sidebar-nav-pagelink-background-position--loaded, var(--sidebar-nav-pagelink-background-image))) -} - -.sidebar-nav li.collapse>a[href^="#/"]:not([href*="?id="]):not(:only-child) { - background-image: var(--sidebar-nav-pagelink-background-image--collapse, var(--sidebar-nav-pagelink-background-image--loaded, var(--sidebar-nav-pagelink-background-image))); - background-position: var(--sidebar-nav-pagelink-background-position--collapse, var(--sidebar-nav-pagelink-background-position--loaded, var(--sidebar-nav-pagelink-background-image))) -} - -.sidebar-nav li.collapse .app-sub-sidebar { - display: none -} - -.sidebar-nav>ul>li>a:before { - content: var(--sidebar-nav-link-before-content-l1, var(--sidebar-nav-link-before-content)); - margin: var(--sidebar-nav-link-before-margin-l1, var(--sidebar-nav-link-before-margin)); - color: var(--sidebar-nav-link-before-color-l1, var(--sidebar-nav-link-before-color)) -} - -.sidebar-nav>ul>li.active>a:before { - content: var(--sidebar-nav-link-before-content-l1--active, var(--sidebar-nav-link-before-content--active, var(--sidebar-nav-link-before-content-l1, var(--sidebar-nav-link-before-content)))); - color: var(--sidebar-nav-link-before-color-l1--active, var(--sidebar-nav-link-before-color--active, var(--sidebar-nav-link-before-color-l1, var(--sidebar-nav-link-before-color)))) -} - -.sidebar-nav>ul>li>ul>li>a:before { - content: var(--sidebar-nav-link-before-content-l2, var(--sidebar-nav-link-before-content)); - margin: var(--sidebar-nav-link-before-margin-l2, var(--sidebar-nav-link-before-margin)); - color: var(--sidebar-nav-link-before-color-l2, var(--sidebar-nav-link-before-color)) -} - -.sidebar-nav>ul>li>ul>li.active>a:before { - content: var(--sidebar-nav-link-before-content-l2--active, var(--sidebar-nav-link-before-content--active, var(--sidebar-nav-link-before-content-l2, var(--sidebar-nav-link-before-content)))); - color: var(--sidebar-nav-link-before-color-l2--active, var(--sidebar-nav-link-before-color--active, var(--sidebar-nav-link-before-color-l2, var(--sidebar-nav-link-before-color)))) -} - -.sidebar-nav>ul>li>ul>li>ul>li>a:before { - content: var(--sidebar-nav-link-before-content-l3, var(--sidebar-nav-link-before-content)); - margin: var(--sidebar-nav-link-before-margin-l3, var(--sidebar-nav-link-before-margin)); - color: var(--sidebar-nav-link-before-color-l3, var(--sidebar-nav-link-before-color)) -} - -.sidebar-nav>ul>li>ul>li>ul>li.active>a:before { - content: var(--sidebar-nav-link-before-content-l3--active, var(--sidebar-nav-link-before-content--active, var(--sidebar-nav-link-before-content-l3, var(--sidebar-nav-link-before-content)))); - color: var(--sidebar-nav-link-before-color-l3--active, var(--sidebar-nav-link-before-color--active, var(--sidebar-nav-link-before-color-l3, var(--sidebar-nav-link-before-color)))) -} - -.sidebar-nav>ul>li>ul>li>ul>li>ul>li>a:before { - content: var(--sidebar-nav-link-before-content-l4, var(--sidebar-nav-link-before-content)); - margin: var(--sidebar-nav-link-before-margin-l4, var(--sidebar-nav-link-before-margin)); - color: var(--sidebar-nav-link-before-color-l4, var(--sidebar-nav-link-before-color)) -} - -.sidebar-nav>ul>li>ul>li>ul>li>ul>li.active>a:before { - content: var(--sidebar-nav-link-before-content-l4--active, var(--sidebar-nav-link-before-content--active, var(--sidebar-nav-link-before-content-l4, var(--sidebar-nav-link-before-content)))); - color: var(--sidebar-nav-link-before-color-l4--active, var(--sidebar-nav-link-before-color--active, var(--sidebar-nav-link-before-color-l4, var(--sidebar-nav-link-before-color)))) -} - -.sidebar-nav>:last-child { - margin-bottom: 2rem -} - -.sidebar-toggle, -.sidebar-toggle-button { - width: var(--sidebar-toggle-width); - outline: none -} - -.sidebar-toggle { - position: fixed; - z-index: 11; - top: 0; - bottom: 0; - left: 0; - max-width: 40px; - margin: 0; - padding: 0; - border: 0; - background: transparent; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - cursor: pointer -} - -.sidebar-toggle .sidebar-toggle-button { - position: absolute; - top: var(--sidebar-toggle-offset-top); - left: var(--sidebar-toggle-offset-left); - height: var(--sidebar-toggle-height); - border-radius: var(--sidebar-toggle-border-radius); - border-width: var(--sidebar-toggle-border-width); - border-style: var(--sidebar-toggle-border-style); - border-color: var(--sidebar-toggle-border-color); - background: var(--sidebar-toggle-background, transparent); - color: var(--sidebar-toggle-icon-color) -} - -.sidebar-toggle span { - position: absolute; - top: calc(50% - (var(--sidebar-toggle-icon-stroke-width) / 2)); - left: calc(50% - (var(--sidebar-toggle-icon-width) / 2)); - height: var(--sidebar-toggle-icon-stroke-width); - width: var(--sidebar-toggle-icon-width); - background-color: currentColor -} - -.sidebar-toggle span:nth-child(1) { - margin-top: calc(0px - (var(--sidebar-toggle-icon-height) / 2)) -} - -.sidebar-toggle span:nth-child(3) { - margin-top: calc((var(--sidebar-toggle-icon-height) / 2)) -} - -@media (min-width: 48em) { - .sidebar-toggle { - position: absolute; - overflow: visible; - top: var(--sidebar-toggle-offset-top); - bottom: auto; - left: 0; - height: var(--sidebar-toggle-height); - -webkit-transform: translateX(var(--sidebar-width)); - transform: translateX(var(--sidebar-width)) - } - .sidebar-toggle .sidebar-toggle-button { - top: 0 - } -} - -@media print { - .sidebar-toggle { - display: none - } -} - -@media (max-width: 47.99em) { - body.close .sidebar, - body.close .sidebar-toggle, - body.close main>.content { - -webkit-transform: translateX(var(--sidebar-width)); - transform: translateX(var(--sidebar-width)) - } -} - -@media (min-width: 48em) { - body.close main>.content { - -webkit-transform: translateX(0); - transform: translateX(0) - } -} - -@media (max-width: 47.99em) { - body.close nav.app-nav, - body.close .github-corner { - display: none - } -} - -@media (min-width: 48em) { - body.close .sidebar, - body.close .sidebar-toggle { - -webkit-transform: translateX(0); - transform: translateX(0) - } -} - -@media (min-width: 48em) { - body.close nav.app-nav { - margin-left: 0 - } -} - -@media (max-width: 47.99em) { - body.close .sidebar-toggle { - width: 100%; - max-width: none - } - body.close .sidebar-toggle span { - margin-top: 0 - } - body.close .sidebar-toggle span:nth-child(1) { - -webkit-transform: rotate(45deg); - transform: rotate(45deg) - } - body.close .sidebar-toggle span:nth-child(2) { - display: none - } - body.close .sidebar-toggle span:nth-child(3) { - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg) - } -} - -@media (min-width: 48em) { - body.close main>.content { - margin-left: 0 - } -} - -@media (min-width: 48em) { - body.sticky .sidebar, - body.sticky .sidebar-toggle { - position: fixed - } -} - -body .docsify-copy-code-button, -body .docsify-copy-code-button:after { - border-radius: var(--border-radius-m, 0); - border-top-left-radius: 0; - border-bottom-right-radius: 0; - background: var(--copycode-background); - color: var(--copycode-color) -} - -body .docsify-copy-code-button span { - border-radius: var(--border-radius-s, 0) -} - -body .docsify-pagination-container { - border-top: var(--pagination-border-top); - color: var(--pagination-color) -} - -body .pagination-item-label { - font-size: var(--pagination-label-font-size) -} - -body .pagination-item-label svg { - color: var(--pagination-label-color); - height: var(--pagination-chevron-height); - stroke: var(--pagination-chevron-stroke); - stroke-linecap: var(--pagination-chevron-stroke-linecap); - stroke-linejoin: var(--pagination-chevron-stroke-linecap); - stroke-width: var(--pagination-chevron-stroke-width) -} - -body .pagination-item-title { - color: var(--pagination-title-color); - font-size: var(--pagination-title-font-size) -} - -body .app-name.hide { - display: block -} - -body .sidebar { - padding: var(--sidebar-padding) -} - -.sidebar .search { - margin: 0; - padding: 0; - border: 0 -} - -.sidebar .search input { - padding: 0; - line-height: 1; - font-size: inherit -} - -.sidebar .search .clear-button { - width: auto -} - -.sidebar .search .clear-button svg { - -webkit-transform: scale(1); - transform: scale(1) -} - -.sidebar .search .matching-post { - border: none -} - -.sidebar .search p { - font-size: inherit -} - -.sidebar .search { - order: var(--search-flex-order); - margin: var(--search-margin); - padding: var(--search-padding); - background: var(--search-background) -} - -.sidebar .search a { - color: inherit -} - -.sidebar .search h2 { - margin: var(--search-result-heading-margin); - font-size: var(--search-result-heading-font-size); - font-weight: var(--search-result-heading-font-weight); - color: var(--search-result-heading-color) -} - -.sidebar .search .input-wrap { - margin: var(--search-input-margin); - background-color: var(--search-input-background-color); - border-width: var(--search-input-border-width, 0); - border-style: solid; - border-color: var(--search-input-border-color); - border-radius: var(--search-input-border-radius) -} - -.sidebar .search input[type="search"] { - min-width: 0; - padding: var(--search-input-padding); - border: none; - background-color: transparent; - background-image: var(--search-input-background-image); - background-position: var(--search-input-background-position); - background-repeat: var(--search-input-background-repeat); - background-size: var(--search-input-background-size); - font-size: var(--search-input-font-size); - color: var(--search-input-color); - transition: var(--search-input-transition) -} - -.sidebar .search input[type="search"]::-ms-clear { - display: none -} - -.sidebar .search input[type="search"]::-webkit-input-placeholder { - color: var(--search-input-placeholder-color, gray) -} - -.sidebar .search input[type="search"]:-ms-input-placeholder { - color: var(--search-input-placeholder-color, gray) -} - -.sidebar .search input[type="search"]::-ms-input-placeholder { - color: var(--search-input-placeholder-color, gray) -} - -.sidebar .search input[type="search"]::placeholder { - color: var(--search-input-placeholder-color, gray) -} - -.sidebar .search input[type="search"]::-webkit-input-placeholder { - line-height: normal -} - -.sidebar .search input[type="search"]:focus { - background-color: var(--search-input-background-color--focus, var(--search-input-background-color)); - background-image: var(--search-input-background-image--focus, var(--search-input-background-image)); - background-position: var(--search-input-background-position--focus, var(--search-input-background-position)); - background-size: var(--search-input-background-size--focus, var(--search-input-background-size)) -} - -@supports (width: env(safe-area-inset)) { - @media only screen and (orientation: landscape) { - .sidebar .search input[type="search"] { - margin-left: calc(env(safe-area-inset-left) / 2) - } - } -} - -.sidebar .search p { - overflow: hidden; - text-overflow: ellipsis; - -webkit-line-clamp: 2 -} - -.sidebar .search p:empty { - text-align: center -} - -.sidebar .search .clear-button { - margin: 0 15px 0 0; - padding: 0; - border: none; - line-height: 1; - background: transparent; - cursor: pointer -} - -.sidebar .search .clear-button svg circle { - fill: var(--search-clear-icon-color1, gray) -} - -.sidebar .search .clear-button svg path { - stroke: var(--search-clear-icon-color2, #fff) -} - -.sidebar .search.show ~ *:not(h1) { - display: none -} - -.sidebar .search .results-panel { - display: none; - color: var(--search-result-item-color); - font-size: var(--search-result-item-font-size); - font-weight: var(--search-result-item-font-weight) -} - -.sidebar .search .results-panel.show { - display: block -} - -.sidebar .search .matching-post { - margin: var(--search-result-item-margin); - padding: var(--search-result-item-padding) -} - -.sidebar .search .matching-post, -.sidebar .search .matching-post:last-child { - border-width: var(--search-result-item-border-width, 0) !important; - border-style: var(--search-result-item-border-style); - border-color: var(--search-result-item-border-color) -} - -.sidebar .search .matching-post p { - margin: 0 -} - -.sidebar .search .search-keyword { - margin: var(--search-result-keyword-margin); - padding: var(--search-result-keyword-padding); - border-radius: var(--search-result-keyword-border-radius); - background-color: var(--search-result-keyword-background); - color: var(--search-result-keyword-color, currentColor); - font-style: normal; - font-weight: var(--search-result-keyword-font-weight) -} - -.medium-zoom-overlay, -.medium-zoom-image--open { - z-index: 50 !important -} - -.medium-zoom-overlay { - background: var(--zoomimage-overlay-background) !important -} - -:root { - --mono-hue: 113; - --mono-saturation: 0%; - --mono-shade3: hsl(var(--mono-hue), var(--mono-saturation), 20%); - --mono-shade2: hsl(var(--mono-hue), var(--mono-saturation), 30%); - --mono-shade1: hsl(var(--mono-hue), var(--mono-saturation), 40%); - --mono-base: hsl(var(--mono-hue), var(--mono-saturation), 50%); - --mono-tint1: hsl(var(--mono-hue), var(--mono-saturation), 70%); - --mono-tint2: hsl(var(--mono-hue), var(--mono-saturation), 89%); - --mono-tint3: hsl(var(--mono-hue), var(--mono-saturation), 97%); - --theme-hue: 204; - --theme-saturation: 90%; - --theme-lightness: 45%; - --theme-color: hsl(var(--theme-hue), var(--theme-saturation), var(--theme-lightness)); - --modular-scale: 1.333; - --modular-scale--2: calc(var(--modular-scale--1) / var(--modular-scale)); - --modular-scale--1: calc(var(--modular-scale-1) / var(--modular-scale)); - --modular-scale-1: 1rem; - --modular-scale-2: calc(var(--modular-scale-1) * var(--modular-scale)); - --modular-scale-3: calc(var(--modular-scale-2) * var(--modular-scale)); - --modular-scale-4: calc(var(--modular-scale-3) * var(--modular-scale)); - --modular-scale-5: calc(var(--modular-scale-4) * var(--modular-scale)); - --font-size-xxxl: var(--modular-scale-5); - --font-size-xxl: var(--modular-scale-4); - --font-size-xl: var(--modular-scale-3); - --font-size-l: var(--modular-scale-2); - --font-size-m: var(--modular-scale-1); - --font-size-s: var(--modular-scale--1); - --font-size-xs: var(--modular-scale--2); - --duration-slow: 1s; - --duration-medium: 0.5s; - --duration-fast: 0.25s; - --spinner-size: 60px; - --spinner-track-width: 4px; - --spinner-track-color: rgba(0, 0, 0, 0.15); - --spinner-transition-duration: var(--duration-medium) -} - -:root { - --base-background-color: #fff; - --base-color: var(--mono-shade2); - --base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - --base-font-size: 16px; - --base-font-weight: normal; - --base-line-height: 1.7; - --emoji-size: calc(var(--base-line-height) * 1em); - --hr-border: 1px solid var(--mono-tint2); - --mark-background: #ffecb3; - --pre-font-family: var(--code-font-family); - --pre-font-size: var(--code-font-size); - --pre-font-weight: normal; - --selection-color: #b4d5fe; - --small-font-size: var(--font-size-s); - --strong-color: var(--heading-color); - --strong-font-weight: 600; - --subsup-font-size: var(--font-size-s) -} - -:root { - --content-max-width: 55em; - --blockquote-background: var(--mono-tint3); - --blockquote-border-style: solid; - --blockquote-border-radius: var(--border-radius-m); - --blockquote-em-font-weight: normal; - --blockquote-font-weight: normal; - --code-font-family: Inconsolata, Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace; - --code-font-size: calc(var(--font-size-m) * 0.95); - --code-font-weight: normal; - --code-tab-size: 4; - --code-block-border-radius: var(--border-radius-m); - --code-block-line-height: var(--base-line-height); - --code-block-margin: 1em 0; - --code-block-padding: 1.75em 1.5em 1.5em 1.5em; - --code-inline-background: var(--code-theme-background); - --code-inline-border-radius: var(--border-radius-s); - --code-inline-color: var(--code-theme-text); - --code-inline-margin: 0 0.15em; - --code-inline-padding: 0.125em 0.4em; - --code-theme-background: var(--mono-tint3); - --heading-color: var(--mono-shade3); - --heading-margin: 2.5rem 0 0; - --heading-h1-border-style: solid; - --heading-h1-font-size: var(--font-size-xxl); - --heading-h2-border-style: solid; - --heading-h2-font-size: var(--font-size-xl); - --heading-h3-border-style: solid; - --heading-h3-font-size: var(--font-size-l); - --heading-h4-border-style: solid; - --heading-h4-font-size: var(--font-size-m); - --heading-h5-border-style: solid; - --heading-h5-font-size: var(--font-size-s); - --heading-h6-border-style: solid; - --heading-h6-font-size: var(--font-size-xs); - --kbd-background: var(--mono-tint3); - --kbd-border-radius: var(--border-radius-m); - --kbd-margin: 0 0.3em; - --kbd-min-width: 2.5em; - --kbd-padding: 0.65em 0.5em; - --link-text-decoration: underline; - --notice-background: var(--mono-tint3); - --notice-border-radius: var(--border-radius-m); - --notice-border-style: solid; - --notice-font-weight: normal; - --notice-padding: 1em 1.5em; - --notice-before-font-weight: normal; - --table-cell-padding: 0.75em 0.5em; - --table-head-border-color: var(--table-cell-border-color); - --table-head-font-weight: var(--strong-font-weight); - --table-row-odd-background: var(--mono-tint3) -} - -:root { - --cover-margin: 0 auto; - --cover-max-width: 40em; - --cover-text-align: center; - --cover-background-color: var(--base-background-color); - --cover-background-mask-color: var(--base-background-color); - --cover-background-mask-opacity: 0.8; - --cover-background-position: center center; - --cover-background-repeat: no-repeat; - --cover-background-size: cover; - --cover-blockquote-font-size: var(--font-size-l); - --cover-border-color: var(--theme-color); - --cover-button-border: 1px solid var(--theme-color); - --cover-button-border-radius: var(--border-radius-m); - --cover-button-color: var(--theme-color); - --cover-button-padding: 0.5em 2rem; - --cover-button-text-decoration: none; - --cover-button-transition: all var(--duration-fast) ease-in-out; - --cover-button-primary-background: var(--theme-color); - --cover-button-primary-border: 1px solid var(--theme-color); - --cover-button-primary-color: #fff; - --cover-heading-color: var(--theme-color); - --cover-heading-font-size: var(--font-size-xxl); - --cover-heading-font-weight: normal; - --cover-link-text-decoration: underline -} - -:root { - --navbar-root-border-style: solid; - --navbar-root-margin: 0 0 0 1.5em; - --navbar-root-transition: all var(--duration-fast); - --navbar-menu-background: var(--base-background-color); - --navbar-menu-border-radius: var(--border-radius-m); - --navbar-menu-box-shadow: rgba(45, 45, 45, 0.05) 0px 0px 1px, rgba(49, 49, 49, 0.05) 0px 1px 2px, rgba(42, 42, 42, 0.05) 0px 2px 4px, rgba(32, 32, 32, 0.05) 0px 4px 8px, rgba(49, 49, 49, 0.05) 0px 8px 16px, rgba(35, 35, 35, 0.05) 0px 16px 32px; - --navbar-menu-padding: 0.5em; - --navbar-menu-transition: all var(--duration-fast); - --navbar-menu-link-border-style: solid; - --navbar-menu-link-margin: 0.75em 0.5em; - --navbar-menu-link-padding: 0.2em 0 -} - -:root { - --copycode-background: #808080; - --copycode-color: #fff -} - -:root { - --docsifytabs-border-color: var(--mono-tint2); - --docsifytabs-border-radius-px: var(--border-radius-s); - --docsifytabs-tab-background: var(--mono-tint3); - --docsifytabs-tab-color: var(--mono-tint1) -} - -:root { - --pagination-border-top: 1px solid var(--mono-tint2); - --pagination-chevron-height: 0.8em; - --pagination-chevron-stroke: currentColor; - --pagination-chevron-stroke-linecap: round; - --pagination-chevron-stroke-width: 1px; - --pagination-label-font-size: var(--font-size-s); - --pagination-title-font-size: var(--font-size-l) -} - -:root { - --search-margin: 1.5rem 0 0; - --search-input-background-repeat: no-repeat; - --search-input-border-color: var(--mono-tint1); - --search-input-border-width: 1px; - --search-input-padding: 0.5em; - --search-flex-order: 1; - --search-result-heading-color: var(--heading-color); - --search-result-heading-font-size: var(--base-font-size); - --search-result-heading-font-weight: normal; - --search-result-heading-margin: 0 0 0.25em; - --search-result-item-border-color: var(--mono-tint2); - --search-result-item-border-style: solid; - --search-result-item-border-width: 0 0 1px 0; - --search-result-item-font-weight: normal; - --search-result-item-padding: 1em 0; - --search-result-keyword-background: var(--mark-background); - --search-result-keyword-border-radius: var(--border-radius-s); - --search-result-keyword-color: var(--mark-color); - --search-result-keyword-font-weight: normal; - --search-result-keyword-margin: 0 0.1em; - --search-result-keyword-padding: 0.2em 0 -} - -:root { - --zoomimage-overlay-background: rgba(0, 0, 0, 0.875) -} - -:root { - --sidebar-background: var(--base-background-color); - --sidebar-border-width: 0; - --sidebar-padding: 0 25px; - --sidebar-transition-duration: var(--duration-fast); - --sidebar-width: 17rem; - --sidebar-name-font-size: var(--font-size-l); - --sidebar-name-font-weight: normal; - --sidebar-name-margin: 1.5rem 0 0; - --sidebar-name-text-align: center; - --sidebar-nav-strong-border-color: var(--sidebar-border-color); - --sidebar-nav-strong-color: var(--heading-color); - --sidebar-nav-strong-font-weight: var(--strong-font-weight); - --sidebar-nav-strong-margin: 1.5em 0 0.5em; - --sidebar-nav-strong-padding: 0.25em 0; - --sidebar-nav-indent: 1em; - --sidebar-nav-margin: 1.5rem 0 0; - --sidebar-nav-link-border-style: solid; - --sidebar-nav-link-border-width: 0; - --sidebar-nav-link-color: var(--base-color); - --sidebar-nav-link-font-weight: normal; - --sidebar-nav-link-padding: 0.25em 0; - --sidebar-nav-link-text-decoration--active: underline; - --sidebar-nav-link-text-decoration--hover: underline; - --sidebar-nav-link-before-margin: 0 0.35em 0 0; - --sidebar-nav-pagelink-background-repeat: no-repeat; - --sidebar-nav-pagelink-transition: var(--sidebar-nav-link-transition); - --sidebar-toggle-border-radius: var(--border-radius-s); - --sidebar-toggle-border-style: solid; - --sidebar-toggle-border-width: 0; - --sidebar-toggle-height: 36px; - --sidebar-toggle-icon-color: var(--base-color); - --sidebar-toggle-icon-height: 10px; - --sidebar-toggle-icon-stroke-width: 1px; - --sidebar-toggle-icon-width: 16px; - --sidebar-toggle-offset-left: 0; - --sidebar-toggle-offset-top: calc(35px - (var(--sidebar-toggle-height) / 2)); - --sidebar-toggle-width: 44px -} - -:root { - --code-theme-background: #f3f3f3; - --code-theme-comment: #6e8090; - --code-theme-function: #dd4a68; - --code-theme-keyword: #07a; - --code-theme-operator: #a67f59; - --code-theme-punctuation: #999; - --code-theme-selection: #b3d4fc; - --code-theme-selector: #690; - --code-theme-tag: #905; - --code-theme-text: #333; - --code-theme-variable: #e90 -} - -:root { - --border-radius-s: 2px; - --border-radius-m: 4px; - --border-radius-l: 8px; - --strong-font-weight: 600; - --blockquote-border-color: var(--theme-color); - --blockquote-border-radius: 0 var(--border-radius-m) var(--border-radius-m) 0; - --blockquote-border-width: 0 0 0 4px; - --code-inline-background: var(--mono-tint2); - --code-theme-background: var(--mono-tint3); - --heading-font-weight: var(--strong-font-weight); - --heading-h1-font-weight: 400; - --heading-h2-font-weight: 400; - --heading-h2-border-color: var(--mono-tint2); - --heading-h2-border-width: 0 0 1px 0; - --heading-h2-margin: 2.5rem 0 1.5rem; - --heading-h2-padding: 0 0 1rem 0; - --kbd-border: 1px solid var(--mono-tint2); - --notice-border-radius: 0 var(--border-radius-m) var(--border-radius-m) 0; - --notice-border-width: 0 0 0 4px; - --notice-padding: 1em 1.5em 1em 3em; - --notice-before-border-radius: 100%; - --notice-before-font-weight: bold; - --notice-before-height: 1.5em; - --notice-before-left: 0.75em; - --notice-before-line-height: 1.5; - --notice-before-margin: 0 0.25em 0 0; - --notice-before-position: absolute; - --notice-before-width: var(--notice-before-height); - --notice-important-background: hsl(340, 60%, 96%); - --notice-important-border-color: hsl(340, 90%, 45%); - --notice-important-before-background: var(--notice-important-border-color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M10 14C10 15.1 9.1 16 8 16 6.9 16 6 15.1 6 14 6 12.9 6.9 12 8 12 9.1 12 10 12.9 10 14Z'/%3E%3Cpath d='M10 1.6C10 1.2 9.8 0.9 9.6 0.7 9.2 0.3 8.6 0 8 0 7.4 0 6.8 0.2 6.5 0.6 6.2 0.9 6 1.2 6 1.6 6 1.7 6 1.8 6 1.9L6.8 9.6C6.9 9.9 7 10.1 7.2 10.2 7.4 10.4 7.7 10.5 8 10.5 8.3 10.5 8.6 10.4 8.8 10.3 9 10.1 9.1 9.9 9.2 9.6L10 1.9C10 1.8 10 1.7 10 1.6Z'/%3E%3C/svg%3E") center / 0.875em no-repeat; - --notice-important-before-color: #fff; - --notice-important-before-content: ""; - --notice-tip-background: hsl(204, 60%, 96%); - --notice-tip-border-color: hsl(204, 90%, 45%); - --notice-tip-before-background: var(--notice-tip-border-color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M9.1 0C10.2 0 10.7 0.7 10.7 1.6 10.7 2.6 9.8 3.6 8.6 3.6 7.6 3.6 7 3 7 2 7 1.1 7.7 0 9.1 0Z'/%3E%3Cpath d='M5.8 16C5 16 4.4 15.5 5 13.2L5.9 9.1C6.1 8.5 6.1 8.2 5.9 8.2 5.7 8.2 4.6 8.6 3.9 9.1L3.5 8.4C5.6 6.6 7.9 5.6 8.9 5.6 9.8 5.6 9.9 6.6 9.5 8.2L8.4 12.5C8.2 13.2 8.3 13.5 8.5 13.5 8.7 13.5 9.6 13.2 10.4 12.5L10.9 13.2C8.9 15.2 6.7 16 5.8 16Z'/%3E%3C/svg%3E") center / 0.875em no-repeat; - --notice-tip-before-color: #fff; - --notice-tip-before-content: ""; - --table-cell-border-color: var(--mono-tint2); - --table-cell-border-width: 1px 0; - --cover-background-color: hsl(var(--theme-hue), 25%, 60%); - --cover-background-image: radial-gradient(ellipse at center 115%, rgba(255, 255, 255, 0.9), transparent); - --cover-blockquote-color: var(--strong-color); - --cover-heading-color: #fff; - --cover-heading-font-size-max: 56; - --cover-heading-font-size-min: 34; - --cover-heading-font-weight: 200; - --navbar-root-color--active: var(--theme-color); - --navbar-menu-border-radius: var(--border-radius-m); - --navbar-menu-root-background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.6' height='6' viewBox='0 0 9.6 6'%3E%3Cpath d='M1.5 1.5l3.3 3 3.3-3' stroke-width='1.5' stroke='rgb%28179, 179, 179%29' fill='none' stroke-linecap='square' stroke-linejoin='miter' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E") right no-repeat; - --navbar-menu-root-padding: 0 18px 0 0; - --search-input-background-color: #fff; - --search-input-background-image: url("data:image/svg+xml,%3Csvg height='20px' width='20px' viewBox='0 0 24 24' fill='none' stroke='rgba(0, 0, 0, 0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' preserveAspectRatio='xMidYMid meet' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10.5' cy='10.5' r='7.5' vector-effect='non-scaling-stroke'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='15.8' y2='15.8' vector-effect='non-scaling-stroke'%3E%3C/line%3E%3C/svg%3E"); - --search-input-background-position: 21px center; - --search-input-border-color: var(--sidebar-border-color); - --search-input-border-width: 1px 0; - --search-input-margin: 0 -25px; - --search-input-padding: 0.65em 1em 0.65em 50px; - --search-input-placeholder-color: rgba(0, 0, 0, 0.4); - --search-clear-icon-color1: rgba(0, 0, 0, 0.3); - --search-result-heading-font-weight: var(--strong-font-weight); - --search-result-item-border-color: var(--sidebar-border-color); - --search-result-keyword-border-radius: var(--border-radius-s); - --sidebar-background: var(--mono-tint3); - --sidebar-border-color: var(--mono-tint2); - --sidebar-border-width: 0 1px 0 0; - --sidebar-name-color: var(--theme-color); - --sidebar-name-font-weight: 300; - --sidebar-nav-strong-border-width: 0 0 1px 0; - --sidebar-nav-strong-font-size: smaller; - --sidebar-nav-strong-margin: 2em -25px 0.75em 0; - --sidebar-nav-strong-padding: 0.25em 0 0.75em 0; - --sidebar-nav-strong-text-transform: uppercase; - --sidebar-nav-link-border-color: transparent; - --sidebar-nav-link-border-color--active: var(--theme-color); - --sidebar-nav-link-border-width: 0 4px 0 0; - --sidebar-nav-link-color--active: var(--theme-color); - --sidebar-nav-link-margin: 0 -25px 0 0; - --sidebar-nav-link-text-decoration: none; - --sidebar-nav-link-text-decoration--active: none; - --sidebar-nav-link-text-decoration--hover: underline; - --sidebar-nav-link-before-content-l3: '-'; - --sidebar-nav-pagelink-background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11.2' viewBox='0 0 7 11.2'%3E%3Cpath d='M1.5 1.5l4 4.1 -4 4.1' stroke-width='1.5' stroke='rgb%28179, 179, 179%29' fill='none' stroke-linecap='square' stroke-linejoin='miter' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E"); - --sidebar-nav-pagelink-background-image--active: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.2' height='7' viewBox='0 0 11.2 7'%3E%3Cpath d='M1.5 1.5l4.1 4 4.1-4' stroke-width='1.5' stroke='rgb%2811, 135, 218%29' fill='none' stroke-linecap='square' stroke-linejoin='miter' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E"); - --sidebar-nav-pagelink-background-image--collapse: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11.2' viewBox='0 0 7 11.2'%3E%3Cpath d='M1.5 1.5l4 4.1 -4 4.1' stroke-width='1.5' stroke='rgb%2811, 135, 218%29' fill='none' stroke-linecap='square' stroke-linejoin='miter' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E"); - --sidebar-nav-pagelink-background-image--loaded: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.2' height='7' viewBox='0 0 11.2 7'%3E%3Cpath d='M1.5 1.5l4.1 4 4.1-4' stroke-width='1.5' stroke='rgb%2811, 135, 218%29' fill='none' stroke-linecap='square' stroke-linejoin='miter' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E"); - --sidebar-nav-pagelink-background-position: 3px center; - --sidebar-nav-pagelink-background-position--active: left center; - --sidebar-nav-pagelink-background-position--collapse: var(--sidebar-nav-pagelink-background-position); - --sidebar-nav-pagelink-background-position--loaded: var(--sidebar-nav-pagelink-background-position--active); - --sidebar-nav-pagelink-padding: 0.25em 0 0.25em 20px; - --sidebar-nav-pagelink-transition: none; - --sidebar-toggle-background: var(--sidebar-border-color); - --sidebar-toggle-border-radius: 0 var(--border-radius-s) var(--border-radius-s) 0; - --sidebar-toggle-width: 32px -} - - -/*# sourceMappingURL=theme-simple.css.map */ \ No newline at end of file diff --git a/docs/assets/css/main.css b/docs/assets/css/main.css deleted file mode 100644 index 83b9b59e529..00000000000 --- a/docs/assets/css/main.css +++ /dev/null @@ -1,52 +0,0 @@ -@import url("dark.css"); -@import url("light.css") (prefers-color-scheme: light); - -.markdown-section iframe[src*="buttons.github.io"] { - margin: 0; -} - -figure.thumbnails img { - margin: 0.75em 0; - border-radius: 3px; - box-shadow: 0 2px 6px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.15); -} - -@media (min-width: 30em) { - figure.thumbnails:after { - content: ""; - display: table; - clear: both; - } - - figure.thumbnails img { - float: left; - width: calc(50% - 0.75em); - } - - figure.thumbnails img:nth-child(even) { - margin-left: 1.5em; - } - - @supports (display: flex) { - figure.thumbnails { - display: flex; - align-items: center; - } - - figure.thumbnails img { - flex-grow: 1; - width: 0; - } - - figure.thumbnails img + img { - margin: 0 0 0 1.5em; - } - .medium-zoom-image { - z-index: 999; - } - img[src*='#center'] { - display: block; - margin: auto; - } - } -} diff --git a/docs/assets/img/DNS.png b/docs/assets/img/DNS.png deleted file mode 100644 index b7aba81c36d..00000000000 Binary files a/docs/assets/img/DNS.png and /dev/null differ diff --git a/docs/assets/img/FTP.png b/docs/assets/img/FTP.png deleted file mode 100644 index 3b0bad7645e..00000000000 Binary files a/docs/assets/img/FTP.png and /dev/null differ diff --git a/docs/assets/img/discord.png b/docs/assets/img/discord.png deleted file mode 100644 index c4f363db459..00000000000 Binary files a/docs/assets/img/discord.png and /dev/null differ diff --git a/docs/assets/img/logo.png b/docs/assets/img/logo.png deleted file mode 100644 index bbd61975160..00000000000 Binary files a/docs/assets/img/logo.png and /dev/null differ diff --git a/docs/assets/js/.eslintrc.js b/docs/assets/js/.eslintrc.js deleted file mode 100644 index 36ac1fa7e54..00000000000 --- a/docs/assets/js/.eslintrc.js +++ /dev/null @@ -1,15 +0,0 @@ -module.exports = { - "parserOptions": { - "ecmaVersion": 5, - "sourceType": "script" - }, - "env": { - "commonjs": false, - "es6" : false, - "node" : false - }, - "rules": { - "no-var" : "off", - "prefer-const": "off" - } -} \ No newline at end of file diff --git a/docs/assets/js/docsify-pagination.js b/docs/assets/js/docsify-pagination.js deleted file mode 100644 index b94c6d9e6b8..00000000000 --- a/docs/assets/js/docsify-pagination.js +++ /dev/null @@ -1,340 +0,0 @@ -(function (global, factory) { - typeof exports === 'object' && typeof module !== 'undefined' ? factory() : - typeof define === 'function' && define.amd ? define(factory) : - (factory()); -}(this, (function () { 'use strict'; - -function createCommonjsModule(fn, module) { - return module = { exports: {} }, fn(module, module.exports), module.exports; -} - -var componentQuery = createCommonjsModule(function (module, exports) { -function one(selector, el) { - return el.querySelector(selector); -} - -exports = module.exports = function (selector, el) { - el = el || document; - return one(selector, el); -}; - -exports.all = function (selector, el) { - el = el || document; - return el.querySelectorAll(selector); -}; - -exports.engine = function (obj) { - if (!obj.one) throw new Error('.one callback required'); - if (!obj.all) throw new Error('.all callback required'); - one = obj.one; - exports.all = obj.all; - return exports; -}; -}); - -var componentQuery_1 = componentQuery.all; -var componentQuery_2 = componentQuery.engine; - -/** - * Module dependencies. - */ - -try { - var query$1 = componentQuery; -} catch (err) { - var query$1 = componentQuery; -} - -/** - * Element prototype. - */ - -var proto = Element.prototype; - -/** - * Vendor function. - */ - -var vendor = proto.matches || proto.webkitMatchesSelector || proto.mozMatchesSelector || proto.msMatchesSelector || proto.oMatchesSelector; - -/** - * Expose `match()`. - */ - -var componentMatchesSelector = match; - -/** - * Match `el` to `selector`. - * - * @param {Element} el - * @param {String} selector - * @return {Boolean} - * @api public - */ - -function match(el, selector) { - if (!el || el.nodeType !== 1) return false; - if (vendor) return vendor.call(el, selector); - var nodes = query$1.all(selector, el.parentNode); - for (var i = 0; i < nodes.length; ++i) { - if (nodes[i] == el) return true; - } - return false; -} - -/** - * Module Dependencies - */ - -try { - var matches = componentMatchesSelector; -} catch (err) { - var matches = componentMatchesSelector; -} - -/** - * Export `closest` - */ - -var componentClosest = closest; - -/** - * Closest - * - * @param {Element} el - * @param {String} selector - * @param {Element} scope (optional) - */ - -function closest(el, selector, scope) { - scope = scope || document.documentElement; - - // walk up the dom - while (el && el !== scope) { - if (matches(el, selector)) return el; - el = el.parentNode; - } - - // check scope for match - return matches(el, selector) ? el : null; -} - -function styleInject(css, ref) { - if (ref === void 0) ref = {}; - var insertAt = ref.insertAt; - - if (!css || typeof document === 'undefined') { - return; - } - - var head = document.head || document.getElementsByTagName('head')[0]; - var style = document.createElement('style'); - style.type = 'text/css'; - - if (insertAt === 'top') { - if (head.firstChild) { - head.insertBefore(style, head.firstChild); - } else { - head.appendChild(style); - } - } else { - head.appendChild(style); - } - - if (style.styleSheet) { - style.styleSheet.cssText = css; - } else { - style.appendChild(document.createTextNode(css)); - } -} - -var css = ".docsify-pagination-container{display:flex;flex-wrap:wrap;justify-content:space-between;overflow:hidden;margin:5em 0 1em;border-top:1px solid rgba(0,0,0,.07)}.pagination-item{margin-top:2.5em}.pagination-item a,.pagination-item a:hover{text-decoration:none}.pagination-item a{color:currentColor}.pagination-item a:hover .pagination-item-title{text-decoration:underline}.pagination-item:not(:last-child) a .pagination-item-label,.pagination-item:not(:last-child) a .pagination-item-subtitle,.pagination-item:not(:last-child) a .pagination-item-title{opacity:.3;transition:all .2s}.pagination-item:last-child .pagination-item-label,.pagination-item:not(:last-child) a:hover .pagination-item-label{opacity:.6}.pagination-item:not(:last-child) a:hover .pagination-item-title{opacity:1}.pagination-item-label{font-size:.8em}.pagination-item-label>*{line-height:1;vertical-align:middle}.pagination-item-label svg{height:.8em;width:auto;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1px}.pagination-item--next{margin-left:auto;text-align:right}.pagination-item--next svg{margin-left:.5em}.pagination-item--previous svg{margin-right:.5em}.pagination-item-title{font-size:1.6em}.pagination-item-subtitle{text-transform:uppercase;opacity:.3}"; -styleInject(css); - -var classCallCheck = function (instance, Constructor) { - if (!(instance instanceof Constructor)) { - throw new TypeError("Cannot call a class as a function"); - } -}; - -var createClass = function () { - function defineProperties(target, props) { - for (var i = 0; i < props.length; i++) { - var descriptor = props[i]; - descriptor.enumerable = descriptor.enumerable || false; - descriptor.configurable = true; - if ("value" in descriptor) descriptor.writable = true; - Object.defineProperty(target, descriptor.key, descriptor); - } - } - - return function (Constructor, protoProps, staticProps) { - if (protoProps) defineProperties(Constructor.prototype, protoProps); - if (staticProps) defineProperties(Constructor, staticProps); - return Constructor; - }; -}(); - - - - - - - -var _extends = Object.assign || function (target) { - for (var i = 1; i < arguments.length; i++) { - var source = arguments[i]; - - for (var key in source) { - if (Object.prototype.hasOwnProperty.call(source, key)) { - target[key] = source[key]; - } - } - } - - return target; -}; - -/** - * constants - */ -var ROUTER_MODE = { - HASH: 'hash', - HISTORY: 'history' -}; -var DEFAULT_OPTIONS = function DEFAULT_OPTIONS(config) { - return { - previousText: 'PREVIOUS', - nextText: 'NEXT', - crossChapter: false, - crossChapterText: false, - routerMode: config.routerMode || ROUTER_MODE.HASH - }; -}; -var CONTAINER_CLASSNAME = 'docsify-pagination-container'; - -/** - * basic utilities - */ -function toArray(elements) { - return Array.prototype.slice.call(elements); -} -function findChapter(element) { - var container = componentClosest(element, 'div > ul > li'); - return componentQuery('p', container); -} -function findHyperlink(element) { - return element.href ? element : componentQuery('a', element); -} -function isALinkTo(path, element) { - if (arguments.length === 1) { - return function (element) { - return isALinkTo(path, element); - }; - } - return decodeURIComponent(element.getAttribute('href').split('?')[0]) === decodeURIComponent(path); -} - -/** - * core renderer - */ - -var Link = function () { - function Link(element) { - classCallCheck(this, Link); - - if (!element) { - return; - } - this.chapter = findChapter(element); - this.hyperlink = findHyperlink(element); - - let badsites = ["introduction", "recover-vwii-ioses-channels", "configurable-payload", "common-issues-fixes", "fix-errcode-112-1037", "about", "block-updates", "unblock-updates", "dump-games", "dump-wii-games", "uninstall-cbhc", "uninstall-indexiine", "faq", "donations"] - let currentpage = window.location.href - let lastItem = currentpage.split('/').pop() - if (badsites.includes(lastItem)){ - throw new NoButtons("No next button is shown."); - } - } - - createClass(Link, [{ - key: 'toJSON', - value: function toJSON() { - if (!this.hyperlink) { - return; - } - return { - name: this.hyperlink.innerText, - href: this.hyperlink.getAttribute('href'), - chapterName: this.chapter && this.chapter.innerText || '' - }; - } - }]); - return Link; -}(); - -function pagination(vm, _ref) { - var crossChapter = _ref.crossChapter, - routerMode = _ref.routerMode; - - try { - var path = routerMode === ROUTER_MODE.HISTORY ? vm.route.path : '#' + vm.route.path; - var all = toArray(componentQuery.all('.sidebar li a')).filter(function (element) { - return !componentMatchesSelector(element, '.section-link'); - }); - var active = all.find(isALinkTo(path)); - var group = toArray((componentClosest(active, 'ul') || {}).children).filter(function (element) { - return element.tagName.toUpperCase() === 'LI'; - }); - var index = crossChapter ? all.findIndex(isALinkTo(path)) : group.findIndex(function (item) { - var hyperlink = findHyperlink(item); - return hyperlink && isALinkTo(path, hyperlink); - }); - - var links = crossChapter ? all : group; - - return { - prev: new Link(links[index - 1]).toJSON(), - next: new Link(links[index + 1]).toJSON() - }; - } catch (error) { - return {}; - } -} - -var template = { - container: function container() { - return '
'; - }, - inner: function inner(data, options) { - return [data.prev && '\n
\n \n
\n \n \n \n ' + options.previousText + '\n
\n
' + data.prev.name + '
\n ', data.prev && options.crossChapterText && '
' + data.prev.chapterName + '
', data.prev && '
\n
\n ', data.next && '\n
\n \n
\n ' + options.nextText + '\n \n \n \n
\n
' + data.next.name + '
\n ', data.next && options.crossChapterText && '
' + data.next.chapterName + '
', data.next && '
\n
\n '].filter(Boolean).join(''); - } -}; - -/** - * installation - */ -function install(hook, vm) { - var options = _extends({}, DEFAULT_OPTIONS(vm.config), vm.config.pagination || {}); - - function render() { - var container = componentQuery('.' + CONTAINER_CLASSNAME); - if (!container) { - return; - } - container.innerHTML = template.inner(pagination(vm, options), options); - } - - hook.afterEach(function (html) { - return html + template.container(); - }); - hook.doneEach(function () { - return render(); - }); -} - -window.$docsify = window.$docsify || {}; - -window.$docsify.plugins = [install].concat(window.$docsify.plugins || []); - -}))); diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js deleted file mode 100644 index 1029804c2e7..00000000000 --- a/docs/assets/js/main.js +++ /dev/null @@ -1,121 +0,0 @@ -(function() { - // Functions - // ========================================================================= - /** - * Adds event listeners to change active stylesheet and restore previously - * activated stylesheet on reload. - * - * @example - * - * This link: - * Foo - * Will active this existing link: - * - * - * @example - * - * This link: - * Bar - * Will activate this existing link: - * - * Or generate this active link: - * - */ - function initStyleSwitcher() { - var isInitialzed = false; - var sessionStorageKey = 'activeStylesheetHref'; - - function handleSwitch(activeHref, activeTitle) { - var activeElm = document.querySelector('link[href*="' + activeHref +'"],link[title="' + activeTitle +'"]'); - - if (!activeElm && activeHref) { - activeElm = document.createElement('link'); - activeElm.setAttribute('href', activeHref); - activeElm.setAttribute('rel', 'stylesheet'); - activeElm.setAttribute('title', activeTitle); - - document.head.appendChild(activeElm); - - activeElm.addEventListener('load', function linkOnLoad() { - activeElm.removeEventListener('load', linkOnLoad); - setActiveLink(activeElm); - }); - } - else if (activeElm) { - setActiveLink(activeElm); - } - } - - function setActiveLink(activeElm) { - var activeHref = activeElm.getAttribute('href'); - var activeTitle = activeElm.getAttribute('title'); - var inactiveElms = document.querySelectorAll('link[title]:not([href*="' + activeHref +'"]):not([title="' + activeTitle +'"])'); - - // Remove "alternate" keyword - activeElm.setAttribute('rel', (activeElm.rel || '').replace(/\s*alternate/g, '').trim()); - - // Force enable stylesheet (required for some browsers) - activeElm.disabled = true; - activeElm.disabled = false; - - // Store active style sheet - sessionStorage.setItem(sessionStorageKey, activeHref); - - // Disable other elms - for (var i = 0; i < inactiveElms.length; i++) { - var elm = inactiveElms[i]; - - elm.disabled = true; - - // Fix for browsersync and alternate stylesheet updates. Will - // cause FOUC when switching stylesheets during development, but - // required to properly apply style updates when alternate - // stylesheets are enabled. - if (window.browsersyncObserver) { - var linkRel = elm.getAttribute('rel') || ''; - var linkRelAlt = linkRel.indexOf('alternate') > -1 ? linkRel : (linkRel + ' alternate').trim(); - - elm.setAttribute('rel', linkRelAlt); - } - } - - // CSS custom property ponyfil - if ((window.$docsify || {}).themeable) { - window.$docsify.themeable.util.cssVars(); - } - } - - // Event listeners - if (!isInitialzed) { - isInitialzed = true; - - // Restore active stylesheet - document.addEventListener('DOMContentLoaded', function() { - var activeHref = sessionStorage.getItem(sessionStorageKey); - - if (activeHref) { - handleSwitch(activeHref); - } - }); - - // Update active stylesheet - document.addEventListener('click', function(evt) { - var dataHref = evt.target.getAttribute('data-link-href'); - var dataTitle = evt.target.getAttribute('data-link-title') - - if (dataHref || dataTitle) { - dataTitle = dataTitle - || evt.target.textContent - || '_' + Math.random().toString(36).substr(2, 9); // UID - - handleSwitch(dataHref, dataTitle); - evt.preventDefault(); - } - }); - } - } - - // Main - // ========================================================================= - initStyleSwitcher(); -})(); diff --git a/docs/assets/js/original-docsify-pagination-license.txt b/docs/assets/js/original-docsify-pagination-license.txt deleted file mode 100644 index 9fb6fa14ed3..00000000000 --- a/docs/assets/js/original-docsify-pagination-license.txt +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2017 - present, yelo - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. \ No newline at end of file diff --git a/docs/extras/block-updates.md b/docs/block-updates.md similarity index 96% rename from docs/extras/block-updates.md rename to docs/block-updates.md index e9247a36d37..d3c892bca9e 100644 --- a/docs/extras/block-updates.md +++ b/docs/block-updates.md @@ -1,11 +1,11 @@ # Blocking Updates ---- + All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. -### Instructions {docsify-ignore} +## Instructions Currently, one way exists to effectively block updates on the Wii U system: diff --git a/docs/common-issues-fixes.md b/docs/common-issues-fixes.md new file mode 100644 index 00000000000..39ec8e69367 --- /dev/null +++ b/docs/common-issues-fixes.md @@ -0,0 +1,43 @@ +# Common Issues & Fixes + +## Haxchi common errors + +- **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. + +- **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. + +- **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. + +## Browser errors + +- **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. + +- **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. + +- **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. + +- **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. + +## Data Management asks to delete unnecessary data, what does it mean? + +This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. +If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. +Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. +The `import` folder should always be kept empty. + +## My HDD doesn't work or makes a weird clicking sound, what should I do? + +The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. + +You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. + +If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. + +## When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? + +Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. + +## My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? + +The internal antenna may have been influenced by the hard drive magnet. +You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/docs/donations.md b/docs/donations.md new file mode 100644 index 00000000000..6e72a5d88e2 --- /dev/null +++ b/docs/donations.md @@ -0,0 +1,9 @@ +# Donations + +::: tip + +[![Paypal](/assets/img/paypal_white.png)](https://paypal.me/NintendoHomebrew){style="display: block;text-align: center"} + +[https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew){style="display: block;text-align: center"} + +::: diff --git a/docs/extras/dump-games.md b/docs/dump-games.md similarity index 55% rename from docs/extras/dump-games.md rename to docs/dump-games.md index 27e11436021..e6530275046 100644 --- a/docs/extras/dump-games.md +++ b/docs/dump-games.md @@ -1,28 +1,49 @@ # Dumping Wii U Discs ---- + Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. +::: tip + +Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. + +::: + +::: danger + +It is **ILLEGAL** to share the files dumped with this guide. -!> It is **ILLEGAL** to share the files dumped with this guide. If you intend to use this guide to share your dumped games, don't. -### Dumping and Installing Wii U Discs {docsify-ignore} +::: + +## Dumping and Installing Wii U Discs + +::: tip + +Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. + +::: -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. +::: tip -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. +When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. +::: -#### What You Need {docsify-ignore} +::: danger + +In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. + +::: + +### What You Need - Your SD Card needs to have enough space to fit the game you want to dump. - If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). - The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). - The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. -#### Instructions {docsify-ignore} +### Instructions 1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. 1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. @@ -44,11 +65,19 @@ If you intend to use this guide to share your dumped games, don't. 1. Take the SD Card out of your Wii U and plug it into your PC. 1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. -### Moving Games To USB +## Moving Games To USB + +::: tip + +If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. +::: -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. +::: danger + +In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. + +::: 1. Plug your USB device into the Wii U. 1. Power on your Wii U. @@ -57,9 +86,13 @@ If you intend to use this guide to share your dumped games, don't. 1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` 1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. -### Move Updates To USB +## Move Updates To USB + +::: tip + +If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. +::: 1. Power on your Wii U 1. Open the Wii U's System Settings. diff --git a/docs/extras/about.md b/docs/extras/about.md deleted file mode 100644 index b619b3ce80b..00000000000 --- a/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/docs/extras/configurable-payload.md b/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/docs/extras/donations.md b/docs/extras/donations.md deleted file mode 100644 index f2669745025..00000000000 --- a/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/docs/extras/dump-wii-games.md b/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/docs/extras/uninstall-cbhc.md b/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/docs/extras/uninstall-payloadloader.md b/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/docs/extras/faq.md b/docs/faq.md similarity index 72% rename from docs/extras/faq.md rename to docs/faq.md index a85163356f4..50dcee786a4 100644 --- a/docs/extras/faq.md +++ b/docs/faq.md @@ -1,49 +1,57 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- +# Frequently Asked Questions -### Does homebrew have any risks? +## Does homebrew have any risks? Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! -### What are exploits? +## What are exploits? Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. -### What are payloads? +## What are payloads? Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. + Multiple payloads can be switched between using the PayloadLoaderPayload. + The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. -### What are environments? +## What are environments? An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. + Setup modules are small pieces of homebrew/code that are executed once to set up an environment. -### How to Delete Update Folder to Block Updates on Wii U +## How to Delete Update Folder to Block Updates on Wii U If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). -### What SD Card size is recommended? +## What SD Card size is recommended? - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. +- **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) +- **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) +- **Only running homebrew apps:** Any size. **Recommended brands:** SanDisk, Samsung or PNY -?> Note: Avoid class 4 SD Cards, and avoid eBay! +::: tip + +Note: Avoid class 4 SD Cards, and avoid eBay! -### Can I install homebrew on Wii U with a USB instead of SD Card? +::: + +## Can I install homebrew on Wii U with a USB instead of SD Card? No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? +## When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. -### What is a Wii U formatted USB drive? +## What is a Wii U formatted USB drive? + +It's a USB drive that has been formatted by a Wii U console to its proprietary format. + +A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/docs/files/Configurable_Payload.zip b/docs/files/Configurable_Payload.zip deleted file mode 100644 index ce558cf0f6a..00000000000 Binary files a/docs/files/Configurable_Payload.zip and /dev/null differ diff --git a/docs/files/Patched_IOS80_Installer_for_vWii.zip b/docs/files/Patched_IOS80_Installer_for_vWii.zip deleted file mode 100644 index e021a960150..00000000000 Binary files a/docs/files/Patched_IOS80_Installer_for_vWii.zip and /dev/null differ diff --git a/docs/files/SaveMii_Mod.zip b/docs/files/SaveMii_Mod.zip deleted file mode 100644 index 0f5655091cd..00000000000 Binary files a/docs/files/SaveMii_Mod.zip and /dev/null differ diff --git a/docs/files/config.ini b/docs/files/config.ini deleted file mode 100644 index fdd33010bf4..00000000000 --- a/docs/files/config.ini +++ /dev/null @@ -1,10 +0,0 @@ -[MOCHA] -viewMode=0 -directLaunch=1 -launchImage=0 -noIosReload=1 -launchSysMenu=0 -redNAND=0 -seeprom_red=0 -otp_red=0 -syshaxXml=0 diff --git a/docs/files/config.txt b/docs/files/config.txt deleted file mode 100644 index ef0be34ccf4..00000000000 --- a/docs/files/config.txt +++ /dev/null @@ -1,2 +0,0 @@ -a=wiiu/apps/homebrew_launcher/homebrew_launcher.elf -default=sysmenu \ No newline at end of file diff --git a/docs/files/d2x_cIOS_Installer.zip b/docs/files/d2x_cIOS_Installer.zip deleted file mode 100644 index 46fe26a11c0..00000000000 Binary files a/docs/files/d2x_cIOS_Installer.zip and /dev/null differ diff --git a/docs/files/index.html b/docs/files/index.html deleted file mode 100644 index 07643490f99..00000000000 --- a/docs/files/index.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/user-guide/introduction.md b/docs/index.md similarity index 53% rename from docs/user-guide/introduction.md rename to docs/index.md index 707bb59b9a6..5b600fe4343 100644 --- a/docs/user-guide/introduction.md +++ b/docs/index.md @@ -1,13 +1,32 @@ -# Wii U Hacks Guide --- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. +layout: home +title: "Wii U Hacks Guide" +hero: + text: "Wii U Hacks Guide" + tagline: "A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware." + image: + src: "/assets/img/home-page-feature.jpg" +--- + +::: tip + +**Discord Help** -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. -> If you appreciate this guide, we accept [donations](donations). +::: + +::: info + +If you appreciate this guide, we accept [donations](donations). -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). +::: + +::: info + +For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). + +::: ### Homebrew @@ -37,24 +56,35 @@ This guide has the end goal of taking a completely unmodified Wii U from stock t ### Before Starting -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** - -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
- For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
- For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
- For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
- For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. +::: danger + +Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** + +::: + +::: info + +This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. + +You will need the following in order to successfully follow this guide: +- An SD Card. +- A device such as a computer to place files onto the SD Card. +- A Wii U with internet access. + +A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. + +::: + +::: tip + +**If you have an existing legacy CFW setup** + +- For **CBHC** users: Go to the [Uninstall CBHC](uninstall-cbhc) page to uninstall CBHC. +- For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app. +- For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](uninstall-indexiine) page to uninstall Indexiine. +- For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. + +::: If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). @@ -66,4 +96,4 @@ It is advised that you read the entire guide from start to finish one or more ti --- -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} +### [Continue to Aroma](aroma/getting-started) diff --git a/docs/navbar.md b/docs/navbar.md deleted file mode 100644 index 932aba1c15d..00000000000 --- a/docs/navbar.md +++ /dev/null @@ -1,13 +0,0 @@ -- ![Themes](https://icongr.am/material/brightness-6.svg?color=A9A9A9&size=37) - - Dark - - Light -- ![Languages](https://icongr.am/material/translate.svg?color=A9A9A9&size=39) - - [English](/) - - [Español](/es_ES/) - - [Deutsch](/de_DE/) - - [Français](/fr_FR/) - - [Italiano](/it_IT/) - - [简体中文](/zh_CN/) - - [Norsk](/no_NO/) - - [Polski](/pl_PL/) -- [![Discord](https://icongr.am/material/discord.svg?color=A9A9A9&size=37)](https://discord.gg/C29hYvh) diff --git a/translations/cs_CZ/docs/privacy/privacy-policy.md b/docs/privacy-policy.md similarity index 80% rename from translations/cs_CZ/docs/privacy/privacy-policy.md rename to docs/privacy-policy.md index ee3de21892a..b18b85768a2 100644 --- a/translations/cs_CZ/docs/privacy/privacy-policy.md +++ b/docs/privacy-policy.md @@ -1,4 +1,4 @@ -# PRIVACY NOTICE {docsify-ignore-all} +# PRIVACY NOTICE **Last updated January 18, 2020** @@ -14,34 +14,34 @@ This privacy policy applies to all information collected through our website (su ## TABLE OF CONTENTS -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) +[1. WHAT INFORMATION DO WE COLLECT?](#1-what-information-do-we-collect) -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) +[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](#2-do-we-use-cookies-and-other-tracking-technologies) -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) +[3. WHAT ARE YOUR PRIVACY RIGHTS?](#3-what-are-your-privacy-rights) -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) +[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](#4-do-california-residents-have-specific-privacy-rights) -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) +[5. DO WE MAKE UPDATES TO THIS POLICY?](#5-do-we-make-updates-to-this-policy) -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) +[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](#6-how-can-you-contact-us-about-this-policy) - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect +### 1. WHAT INFORMATION DO WE COLLECT? ***In Short:*** *We do not collect any personal information.* We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies +### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES? + ***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights +### 3. WHAT ARE YOUR PRIVACY RIGHTS? ***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* @@ -52,7 +52,7 @@ If we are relying on your consent to process your personal information, you have If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights +### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? ***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* @@ -61,13 +61,13 @@ California Civil Code Section 1798.83, also known as the “Shine The Light” l If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy +### 5. DO WE MAKE UPDATES TO THIS POLICY? ***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy +### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file +If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com diff --git a/docs/privacy/privacy-policy.md b/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/docs/assets/img/favicon.ico b/docs/public/assets/img/favicon.ico similarity index 100% rename from docs/assets/img/favicon.ico rename to docs/public/assets/img/favicon.ico diff --git a/docs/assets/img/guide/ABM.png b/docs/public/assets/img/guide/ABM.png similarity index 100% rename from docs/assets/img/guide/ABM.png rename to docs/public/assets/img/guide/ABM.png diff --git a/docs/assets/img/guide/ABM_Highlight.png b/docs/public/assets/img/guide/ABM_Highlight.png similarity index 100% rename from docs/assets/img/guide/ABM_Highlight.png rename to docs/public/assets/img/guide/ABM_Highlight.png diff --git a/docs/assets/img/guide/Aroma_Box.png b/docs/public/assets/img/guide/Aroma_Box.png similarity index 100% rename from docs/assets/img/guide/Aroma_Box.png rename to docs/public/assets/img/guide/Aroma_Box.png diff --git a/docs/assets/img/guide/Aroma_DL.png b/docs/public/assets/img/guide/Aroma_DL.png similarity index 100% rename from docs/assets/img/guide/Aroma_DL.png rename to docs/public/assets/img/guide/Aroma_DL.png diff --git a/docs/assets/img/guide/EL.png b/docs/public/assets/img/guide/EL.png similarity index 100% rename from docs/assets/img/guide/EL.png rename to docs/public/assets/img/guide/EL.png diff --git a/docs/assets/img/guide/EL_Highlight.png b/docs/public/assets/img/guide/EL_Highlight.png similarity index 100% rename from docs/assets/img/guide/EL_Highlight.png rename to docs/public/assets/img/guide/EL_Highlight.png diff --git a/docs/assets/img/guide/NAND.png b/docs/public/assets/img/guide/NAND.png similarity index 100% rename from docs/assets/img/guide/NAND.png rename to docs/public/assets/img/guide/NAND.png diff --git a/docs/assets/img/guide/PLL.png b/docs/public/assets/img/guide/PLL.png similarity index 100% rename from docs/assets/img/guide/PLL.png rename to docs/public/assets/img/guide/PLL.png diff --git a/docs/assets/img/guide/PLLI.png b/docs/public/assets/img/guide/PLLI.png similarity index 100% rename from docs/assets/img/guide/PLLI.png rename to docs/public/assets/img/guide/PLLI.png diff --git a/docs/assets/img/guide/SD_Prep.mp4 b/docs/public/assets/img/guide/SD_Prep.mp4 similarity index 100% rename from docs/assets/img/guide/SD_Prep.mp4 rename to docs/public/assets/img/guide/SD_Prep.mp4 diff --git a/docs/assets/img/guide/Warn.png b/docs/public/assets/img/guide/Warn.png similarity index 100% rename from docs/assets/img/guide/Warn.png rename to docs/public/assets/img/guide/Warn.png diff --git a/docs/public/assets/img/home-page-feature.jpg b/docs/public/assets/img/home-page-feature.jpg new file mode 100644 index 00000000000..713ea33a9a0 Binary files /dev/null and b/docs/public/assets/img/home-page-feature.jpg differ diff --git a/docs/assets/img/nh.jpg b/docs/public/assets/img/nh.jpg similarity index 100% rename from docs/assets/img/nh.jpg rename to docs/public/assets/img/nh.jpg diff --git a/docs/assets/img/paypal_white.png b/docs/public/assets/img/paypal_white.png similarity index 100% rename from docs/assets/img/paypal_white.png rename to docs/public/assets/img/paypal_white.png diff --git a/docs/files/01_sigpatches.rpx b/docs/public/files/01_sigpatches.rpx similarity index 100% rename from docs/files/01_sigpatches.rpx rename to docs/public/files/01_sigpatches.rpx diff --git a/docs/files/Advanced-options.jpg b/docs/public/files/Advanced-options.jpg similarity index 100% rename from docs/files/Advanced-options.jpg rename to docs/public/files/Advanced-options.jpg diff --git a/docs/files/Advanced-options2.jpg b/docs/public/files/Advanced-options2.jpg similarity index 100% rename from docs/files/Advanced-options2.jpg rename to docs/public/files/Advanced-options2.jpg diff --git a/docs/files/Advanced-options3.jpg b/docs/public/files/Advanced-options3.jpg similarity index 100% rename from docs/files/Advanced-options3.jpg rename to docs/public/files/Advanced-options3.jpg diff --git a/docs/recover-vwii-ioses-channels.md b/docs/recover-vwii-ioses-channels.md new file mode 100644 index 00000000000..b88ba5c983d --- /dev/null +++ b/docs/recover-vwii-ioses-channels.md @@ -0,0 +1,140 @@ +# Recover a vWii IOS/Channel + +This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. + +::: danger + +This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](aroma/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! + +::: + +::: tip + +If you are using a system update blocking method, please [remove it](unblock-updates). + +::: + +::: tip + +Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. + +::: + +## What You Need + +- A working [homebrew installation](index) on the Wii U side. +- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). + +## Instructions + +1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. +1. Take the SD Card out of your computer and plug it into your Wii U console. +1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). +1. Launch the Homebrew Launcher. +1. Launch vWii Decaffeinator. + +## Recovering Process + +You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. + + + +::::: tabs + +:::: tab default Advanced options + +### Advanced options + +::: tip + +This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. + +::: + +::: details Click here to show what can be recovered with this method. + +![Advanced options](/files/Advanced-options.jpg) +![Advanced options2](/files/Advanced-options2.jpg) +![Advanced options3](/files/Advanced-options3.jpg) + +::: + +1. Select `Advanced options` on the menu. +1. Use the D-Pad to toggle what you would like to be restored. +1. Press Start to initiate the restoration process. +1. When the application finishes, allow the application to launch the System Settings. +1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. + +::: tip + +You can now re-enable your [system update blocking method](block-updates). + +::: + +:::: + +:::: tab Light mode + +### Light mode + +::: tip + +This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. + +::: + +1. Select `Light mode` on the menu. +1. Press Start to initiate the restoration process. +1. When the application finishes, allow the application to launch the System Settings. +1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. + +::: tip + +You can now re-enable your [system update blocking method](block-updates). + +::: + +::: info + +If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. + +::: + +:::: + +:::: tab Aggressive mode + +### Aggressive mode + +::: danger + +This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! + +::: + +1. Select `Aggressive mode` on the menu. +1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. +1. When the application finishes, allow the application to launch the System Settings. +1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. + +::: tip + +You can now re-enable your [system update blocking method](block-updates). + +::: + +::: info + +If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. + +::: + +:::: + +::::: + +::: tip + +If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. + +::: diff --git a/docs/sidebar.md b/docs/sidebar.md deleted file mode 100644 index 69043206fb1..00000000000 --- a/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/docs/troubleshooting/common-issues-fixes.md b/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index 8364a1582bd..00000000000 --- a/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,43 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. -If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/docs/troubleshooting/recover-vwii-ioses-channels.md b/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index 4ad67553c4e..00000000000 --- a/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,85 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) -![Advanced options2](docs/files/Advanced-options2.jpg) -![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/docs/extras/unblock-updates.md b/docs/unblock-updates.md similarity index 63% rename from docs/extras/unblock-updates.md rename to docs/unblock-updates.md index 94851ce09c6..b14ccfd9546 100644 --- a/docs/extras/unblock-updates.md +++ b/docs/unblock-updates.md @@ -1,18 +1,26 @@ # Unblocking Updates ---- + This is needed if you ever need to perform a System Update. -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. +::: tip + +If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. -### Instructions {docsify-ignore} +::: - +## Instructions -#### **Removing Aroma Autoboot** +::::: tabs + +:::: tab default Removing Aroma Autoboot ### Removing Aroma Autoboot -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. +::: tip + +When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. + +::: 1. Launch the PayloadLoader Installer from the Wii U Menu. 1. Press A to select `Check`. @@ -20,9 +28,11 @@ This is needed if you ever need to perform a System Update. 1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. 1. When the process finished, press A to shutdown the console. 1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. +1. Follow [this](aroma/autobooting) to re-enable autobooting. + +:::: -#### **Recreating Update Folder** +:::: tab Recreating Update Folder ### Recreating Update Folder @@ -30,7 +40,9 @@ This is needed if you ever need to perform a System Update. 1. Boot Aroma while holding + (Plus). 1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". -#### **Removing DNS Blocks** +:::: + +:::: tab Removing DNS Blocks ### Removing DNS Blocks @@ -38,4 +50,6 @@ This is needed if you ever need to perform a System Update. `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. 1. You are no longer blocking system updates. - +:::: + +::::: diff --git a/translations/ca_ES/docs/extras/uninstall-cbhc.md b/docs/uninstall-cbhc.md similarity index 62% rename from translations/ca_ES/docs/extras/uninstall-cbhc.md rename to docs/uninstall-cbhc.md index f1cf3cb279e..20cb5665b83 100644 --- a/translations/ca_ES/docs/extras/uninstall-cbhc.md +++ b/docs/uninstall-cbhc.md @@ -1,8 +1,8 @@ # Uninstall CBHC ---- + This page will guide through the process of uninstalling CBHC from your Wii U. -### Instructions {docsify-ignore} +## Instructions 1. Launch the Homebrew Launcher. 1. Launch CBHC Installer. @@ -11,4 +11,8 @@ This page will guide through the process of uninstalling CBHC from your Wii U. 1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. 1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file +::: tip + +If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. + +::: diff --git a/docs/extras/uninstall-indexiine.md b/docs/uninstall-indexiine.md similarity index 89% rename from docs/extras/uninstall-indexiine.md rename to docs/uninstall-indexiine.md index 2cda471e844..6094d935339 100644 --- a/docs/extras/uninstall-indexiine.md +++ b/docs/uninstall-indexiine.md @@ -1,8 +1,8 @@ # Uninstall Indexiine ---- + This page will guide through the process of uninstalling Indexiine from your Wii U. -### Instructions {docsify-ignore} +## Instructions 1. Launch the Homebrew Launcher. 1. Launch Indexiine-Installer. diff --git a/translations/ar_SA/docs/extras/uninstall-payloadloader.md b/docs/uninstall-payloadloader.md similarity index 83% rename from translations/ar_SA/docs/extras/uninstall-payloadloader.md rename to docs/uninstall-payloadloader.md index c776fd070b5..f9348dd5ff9 100644 --- a/translations/ar_SA/docs/extras/uninstall-payloadloader.md +++ b/docs/uninstall-payloadloader.md @@ -1,17 +1,21 @@ # Uninstall PayloadLoader ---- + This page will guide through the process of uninstalling the PayloadLoader from your Wii U. -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. +::: danger + +A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. + +::: -### What You Need {docsify-ignore} +## What You Need - The latest files from [Aroma for your café](https://aroma.foryour.cafe). 1. Scroll down to the **Download** section. 1. Read through the steps and click on the checkboxes. 1. Click on `Download Payloads` and `Download Base Aroma`. -### Undo Autobooting into PayloadLoader +## Undo Autobooting into PayloadLoader 1. Launch the PayloadLoader Installer from the Wii U Menu. 1. Press A to select `Check`. @@ -20,7 +24,7 @@ This page will guide through the process of uninstalling the PayloadLoader from 1. When the process finished, press A to shutdown the console. 1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. -### Uninstall PayloadLoader +## Uninstall PayloadLoader 1. Launch the Health & Safety Application and boot into Aroma. 1. Launch the PayloadLoader Installer from the Wii U Menu. diff --git a/docs/user-guide/archive/cbhc/browser-exploit.md b/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index 13b0b5d8d56..00000000000 --- a/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/docs/user-guide/archive/cbhc/ds-vc-choice.md b/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/docs/user-guide/archive/cbhc/installing-hblc.md b/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/docs/user-guide/archive/cbhc/launching-cfw.md b/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index 79b87dcb99e..00000000000 --- a/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,42 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC: -
- The DS game has to be legitimately installed from the eShop! -
- Don't format the system while CBHC is installed! -
- Don't delete the user account that bought the DS Virtual Console game! -
- Don't re-install the same game using WUP Installer or from the eShop! -
- Don't install Haxchi over CBHC! -
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)! -
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/docs/user-guide/archive/cbhc/nand-backup.md b/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 50c2fdcf825..00000000000 --- a/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,28 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills. -
However, making a NAND Backup is **always** useful, so please do not skip it. -
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/docs/user-guide/archive/cbhc/sd-preparation.md b/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 98b8fe34439..00000000000 --- a/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,83 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** - Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** - The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/docs/user-guide/archive/cbhc/sidebar.md b/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/docs/user-guide/archive/cfw-choice.md b/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 56ac795c299..00000000000 --- a/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,50 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC: -
- The DS game has to be legitimately installed from the eShop! -
- Don't format the system while CBHC is installed! -
- Don't delete the user account that bought the DS Virtual Console game! -
- Don't re-install the same game using WUP Installer or from the eShop! -
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.) -
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)! -
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/docs/user-guide/archive/haxchi/browser-exploit.md b/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 507b5cee5cd..00000000000 --- a/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/docs/user-guide/archive/haxchi/ds-vc-choice.md b/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/docs/user-guide/archive/haxchi/installing-hblc.md b/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/docs/user-guide/archive/haxchi/launching-cfw.md b/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/docs/user-guide/archive/haxchi/nand-backup.md b/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index f2f42da7111..00000000000 --- a/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,28 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills. -
However, making a NAND Backup is **always** useful, so please do not skip it. -
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/docs/user-guide/archive/haxchi/sd-preparation.md b/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index e971db1922b..00000000000 --- a/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,76 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** - Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** - The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/docs/user-guide/archive/haxchi/sidebar.md b/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/docs/user-guide/archive/mocha/entrypoint-choice.md b/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index 57a8432cffa..00000000000 --- a/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index 9a5ebac04e4..00000000000 --- a/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,28 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills. -
However, making a NAND Backup is **always** useful, so please do not skip it. -
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index 6bb1453d8d1..00000000000 --- a/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,62 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** - Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** - The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/docs/user-guide/archive/mocha/indexiine/sidebar.md b/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index c273c64fb61..00000000000 --- a/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index d3e8964e0af..00000000000 --- a/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,28 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills. -
However, making a NAND Backup is **always** useful, so please do not skip it. -
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index 9923d305539..00000000000 --- a/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** - Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** - The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/docs/user-guide/archive/mocha/sidebar.md b/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/docs/user-guide/archive/sidebar.md b/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/docs/user-guide/archive/tiramisu/autoboot.md b/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/docs/user-guide/archive/tiramisu/browser-exploit.md b/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/docs/user-guide/archive/tiramisu/finalizing-setup.md b/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 101b5fcbe5b..00000000000 --- a/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,45 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher. -
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher. -
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. -If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index a95cc3f150a..00000000000 --- a/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/docs/user-guide/archive/tiramisu/nand-backup.md b/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 365bfabd306..00000000000 --- a/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,28 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills. -
However, making a NAND Backup is **always** useful, so please do not skip it. -
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/docs/user-guide/archive/tiramisu/sd-preparation.md b/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index 82d3edb9412..00000000000 --- a/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,70 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** - Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/docs/user-guide/archive/tiramisu/sidebar.md b/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/docs/user-guide/archive/vwii/browser-exploit.md b/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 19f8a2b07c0..00000000000 --- a/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/docs/user-guide/archive/vwii/finalizing-setup.md b/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 93bccaddae5..00000000000 --- a/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,31 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -1. Follow the instructions in the link for copying Nintendont, scrolling down. -1. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/docs/user-guide/archive/vwii/installing-cioses.md b/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index e6476a23ed5..00000000000 --- a/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index 8ca56b7eeff..00000000000 --- a/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -1. Launch the `vWii Compat Installer` from the Wii U Menu. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/docs/user-guide/archive/vwii/nand-backup.md b/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index 458de80cff7..00000000000 --- a/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/docs/user-guide/archive/vwii/patching-ios80.md b/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 826377ab3c5..00000000000 --- a/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/docs/user-guide/archive/vwii/sd-preparation.md b/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index f6d404f683c..00000000000 --- a/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} ---- -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** - Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -1. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -1. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/docs/user-guide/archive/vwii/sidebar.md b/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 270622892f9..00000000000 --- a/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -**vWii Modding** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/docs/user-guide/aroma/sidebar.md b/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/docs/user-guide/vwii/sidebar.md b/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/docs/user-guide/vwii/vwii-modding.md b/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index d3e0827640c..00000000000 --- a/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/vwii/vwii-modding.md b/docs/vwii/vwii-modding.md similarity index 84% rename from translations/ca_ES/docs/user-guide/vwii/vwii-modding.md rename to docs/vwii/vwii-modding.md index c7bdad0146f..9c8c31b4f7f 100644 --- a/translations/ca_ES/docs/user-guide/vwii/vwii-modding.md +++ b/docs/vwii/vwii-modding.md @@ -1,4 +1,4 @@ -# Modding the vWii {docsify-ignore-all} +# Modding the vWii The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. diff --git a/index.html b/index.html deleted file mode 100644 index 10c401bc1a5..00000000000 --- a/index.html +++ /dev/null @@ -1,729 +0,0 @@ - - - - - - - - - Wii U Hacks Guide - - - - - - - - - - - -
- - - - - - - - - - - - - - - diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000000..4b65de618f2 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,2372 @@ +{ + "name": "Guide-WiiU", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "@fortawesome/fontawesome-svg-core": "^6.6.0", + "@fortawesome/free-solid-svg-icons": "^6.6.0", + "@fortawesome/vue-fontawesome": "^3.0.8", + "markdown-it-container": "^4.0.0" + }, + "devDependencies": { + "vitepress": "^1.3.4" + } + }, + "node_modules/@algolia/autocomplete-core": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz", + "integrity": "sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==", + "dev": true, + "dependencies": { + "@algolia/autocomplete-plugin-algolia-insights": "1.9.3", + "@algolia/autocomplete-shared": "1.9.3" + } + }, + "node_modules/@algolia/autocomplete-plugin-algolia-insights": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz", + "integrity": "sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==", + "dev": true, + "dependencies": { + "@algolia/autocomplete-shared": "1.9.3" + }, + "peerDependencies": { + "search-insights": ">= 1 < 3" + } + }, + "node_modules/@algolia/autocomplete-preset-algolia": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz", + "integrity": "sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==", + "dev": true, + "dependencies": { + "@algolia/autocomplete-shared": "1.9.3" + }, + "peerDependencies": { + "@algolia/client-search": ">= 4.9.1 < 6", + "algoliasearch": ">= 4.9.1 < 6" + } + }, + "node_modules/@algolia/autocomplete-shared": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz", + "integrity": "sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==", + "dev": true, + "peerDependencies": { + "@algolia/client-search": ">= 4.9.1 < 6", + "algoliasearch": ">= 4.9.1 < 6" + } + }, + "node_modules/@algolia/cache-browser-local-storage": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.24.0.tgz", + "integrity": "sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==", + "dev": true, + "dependencies": { + "@algolia/cache-common": "4.24.0" + } + }, + "node_modules/@algolia/cache-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.24.0.tgz", + "integrity": "sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==", + "dev": true + }, + "node_modules/@algolia/cache-in-memory": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.24.0.tgz", + "integrity": "sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==", + "dev": true, + "dependencies": { + "@algolia/cache-common": "4.24.0" + } + }, + "node_modules/@algolia/client-account": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.24.0.tgz", + "integrity": "sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==", + "dev": true, + "dependencies": { + "@algolia/client-common": "4.24.0", + "@algolia/client-search": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-account/node_modules/@algolia/client-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", + "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", + "dev": true, + "dependencies": { + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-account/node_modules/@algolia/client-search": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", + "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", + "dev": true, + "dependencies": { + "@algolia/client-common": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-analytics": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.24.0.tgz", + "integrity": "sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==", + "dev": true, + "dependencies": { + "@algolia/client-common": "4.24.0", + "@algolia/client-search": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-analytics/node_modules/@algolia/client-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", + "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", + "dev": true, + "dependencies": { + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-analytics/node_modules/@algolia/client-search": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", + "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", + "dev": true, + "dependencies": { + "@algolia/client-common": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-common": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.4.1.tgz", + "integrity": "sha512-IffPD+CETiR8YJMVC1lcjnhETLpJ2L0ORZCbbRvwo/S11D1j/keR7AqKVMn4TseRJCfjmBFOcFrC+m4sXjyQWA==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-personalization": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.24.0.tgz", + "integrity": "sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==", + "dev": true, + "dependencies": { + "@algolia/client-common": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-personalization/node_modules/@algolia/client-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", + "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", + "dev": true, + "dependencies": { + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-search": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.4.1.tgz", + "integrity": "sha512-nCgWY2p0tZgBqJKmA5E6B3VW+7uqxi1Orf88zNWOihJBRFeOV932pzG4vGrX9l0+p0o/vJabYxuomO35rEt5dw==", + "dev": true, + "peer": true, + "dependencies": { + "@algolia/client-common": "5.4.1", + "@algolia/requester-browser-xhr": "5.4.1", + "@algolia/requester-fetch": "5.4.1", + "@algolia/requester-node-http": "5.4.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/logger-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.24.0.tgz", + "integrity": "sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==", + "dev": true + }, + "node_modules/@algolia/logger-console": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.24.0.tgz", + "integrity": "sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==", + "dev": true, + "dependencies": { + "@algolia/logger-common": "4.24.0" + } + }, + "node_modules/@algolia/recommend": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-4.24.0.tgz", + "integrity": "sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==", + "dev": true, + "dependencies": { + "@algolia/cache-browser-local-storage": "4.24.0", + "@algolia/cache-common": "4.24.0", + "@algolia/cache-in-memory": "4.24.0", + "@algolia/client-common": "4.24.0", + "@algolia/client-search": "4.24.0", + "@algolia/logger-common": "4.24.0", + "@algolia/logger-console": "4.24.0", + "@algolia/requester-browser-xhr": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/requester-node-http": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/recommend/node_modules/@algolia/client-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", + "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", + "dev": true, + "dependencies": { + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/recommend/node_modules/@algolia/client-search": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", + "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", + "dev": true, + "dependencies": { + "@algolia/client-common": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/recommend/node_modules/@algolia/requester-browser-xhr": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.24.0.tgz", + "integrity": "sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==", + "dev": true, + "dependencies": { + "@algolia/requester-common": "4.24.0" + } + }, + "node_modules/@algolia/recommend/node_modules/@algolia/requester-node-http": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.24.0.tgz", + "integrity": "sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==", + "dev": true, + "dependencies": { + "@algolia/requester-common": "4.24.0" + } + }, + "node_modules/@algolia/requester-browser-xhr": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.4.1.tgz", + "integrity": "sha512-J6+YfU+maR0nIbsYRHoq0UpneilX97hrZzPuuvSoBojQmPo8PeCXKGeT/F0D8uFI6G4CMTKEPGmQYrC9IpCbcQ==", + "dev": true, + "peer": true, + "dependencies": { + "@algolia/client-common": "5.4.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.24.0.tgz", + "integrity": "sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==", + "dev": true + }, + "node_modules/@algolia/requester-fetch": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.4.1.tgz", + "integrity": "sha512-AO/C1pqqpIS8p2IsfM5x92S+UBKkcIen5dHfMEh1rnV0ArWDreeqrtxMD2A+6AjQVwYeZNy56w7o7PVIm6mc8g==", + "dev": true, + "peer": true, + "dependencies": { + "@algolia/client-common": "5.4.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-node-http": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.4.1.tgz", + "integrity": "sha512-2Y3vffc91egwFxz0SjXFEH4q8nvlNJHcz+0//NaWItRU68AvD+3aI/j66STPjkLQOC0Ku6ckA9ChhbOVfrv+Uw==", + "dev": true, + "peer": true, + "dependencies": { + "@algolia/client-common": "5.4.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/transporter": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.24.0.tgz", + "integrity": "sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==", + "dev": true, + "dependencies": { + "@algolia/cache-common": "4.24.0", + "@algolia/logger-common": "4.24.0", + "@algolia/requester-common": "4.24.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz", + "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==", + "dependencies": { + "@babel/types": "^7.25.6" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/types": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz", + "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==", + "dependencies": { + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@docsearch/css": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.6.1.tgz", + "integrity": "sha512-VtVb5DS+0hRIprU2CO6ZQjK2Zg4QU5HrDM1+ix6rT0umsYvFvatMAnf97NHZlVWDaaLlx7GRfR/7FikANiM2Fg==", + "dev": true + }, + "node_modules/@docsearch/js": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/@docsearch/js/-/js-3.6.1.tgz", + "integrity": "sha512-erI3RRZurDr1xES5hvYJ3Imp7jtrXj6f1xYIzDzxiS7nNBufYWPbJwrmMqWC5g9y165PmxEmN9pklGCdLi0Iqg==", + "dev": true, + "dependencies": { + "@docsearch/react": "3.6.1", + "preact": "^10.0.0" + } + }, + "node_modules/@docsearch/react": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.6.1.tgz", + "integrity": "sha512-qXZkEPvybVhSXj0K7U3bXc233tk5e8PfhoZ6MhPOiik/qUQxYC+Dn9DnoS7CxHQQhHfCvTiN0eY9M12oRghEXw==", + "dev": true, + "dependencies": { + "@algolia/autocomplete-core": "1.9.3", + "@algolia/autocomplete-preset-algolia": "1.9.3", + "@docsearch/css": "3.6.1", + "algoliasearch": "^4.19.1" + }, + "peerDependencies": { + "@types/react": ">= 16.8.0 < 19.0.0", + "react": ">= 16.8.0 < 19.0.0", + "react-dom": ">= 16.8.0 < 19.0.0", + "search-insights": ">= 1 < 3" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + }, + "search-insights": { + "optional": true + } + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@fortawesome/fontawesome-common-types": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.6.0.tgz", + "integrity": "sha512-xyX0X9mc0kyz9plIyryrRbl7ngsA9jz77mCZJsUkLl+ZKs0KWObgaEBoSgQiYWAsSmjz/yjl0F++Got0Mdp4Rw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/fontawesome-svg-core": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.6.0.tgz", + "integrity": "sha512-KHwPkCk6oRT4HADE7smhfsKudt9N/9lm6EJ5BVg0tD1yPA5hht837fB87F8pn15D8JfTqQOjhKTktwmLMiD7Kg==", + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/free-solid-svg-icons": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.6.0.tgz", + "integrity": "sha512-IYv/2skhEDFc2WGUcqvFJkeK39Q+HyPf5GHUrT/l2pKbtgEIv1al1TKd6qStR5OIwQdN1GZP54ci3y4mroJWjA==", + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/vue-fontawesome": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@fortawesome/vue-fontawesome/-/vue-fontawesome-3.0.8.tgz", + "integrity": "sha512-yyHHAj4G8pQIDfaIsMvQpwKMboIZtcHTUvPqXjOHyldh1O1vZfH4W03VDPv5RvI9P6DLTzJQlmVgj9wCf7c2Fw==", + "peerDependencies": { + "@fortawesome/fontawesome-svg-core": "~1 || ~6", + "vue": ">= 3.0.0 < 4" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.3.tgz", + "integrity": "sha512-MmKSfaB9GX+zXl6E8z4koOr/xU63AMVleLEa64v7R0QF/ZloMs5vcD1sHgM64GXXS1csaJutG+ddtzcueI/BLg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.3.tgz", + "integrity": "sha512-zrt8ecH07PE3sB4jPOggweBjJMzI1JG5xI2DIsUbkA+7K+Gkjys6eV7i9pOenNSDJH3eOr/jLb/PzqtmdwDq5g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.3.tgz", + "integrity": "sha512-P0UxIOrKNBFTQaXTxOH4RxuEBVCgEA5UTNV6Yz7z9QHnUJ7eLX9reOd/NYMO3+XZO2cco19mXTxDMXxit4R/eQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.3.tgz", + "integrity": "sha512-L1M0vKGO5ASKntqtsFEjTq/fD91vAqnzeaF6sfNAy55aD+Hi2pBI5DKwCO+UNDQHWsDViJLqshxOahXyLSh3EA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.3.tgz", + "integrity": "sha512-btVgIsCjuYFKUjopPoWiDqmoUXQDiW2A4C3Mtmp5vACm7/GnyuprqIDPNczeyR5W8rTXEbkmrJux7cJmD99D2g==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.3.tgz", + "integrity": "sha512-zmjbSphplZlau6ZTkxd3+NMtE4UKVy7U4aVFMmHcgO5CUbw17ZP6QCgyxhzGaU/wFFdTfiojjbLG3/0p9HhAqA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.3.tgz", + "integrity": "sha512-nSZfcZtAnQPRZmUkUQwZq2OjQciR6tEoJaZVFvLHsj0MF6QhNMg0fQ6mUOsiCUpTqxTx0/O6gX0V/nYc7LrgPw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.3.tgz", + "integrity": "sha512-MnvSPGO8KJXIMGlQDYfvYS3IosFN2rKsvxRpPO2l2cum+Z3exiExLwVU+GExL96pn8IP+GdH8Tz70EpBhO0sIQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.3.tgz", + "integrity": "sha512-+W+p/9QNDr2vE2AXU0qIy0qQE75E8RTwTwgqS2G5CRQ11vzq0tbnfBd6brWhS9bCRjAjepJe2fvvkvS3dno+iw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.3.tgz", + "integrity": "sha512-yXH6K6KfqGXaxHrtr+Uoy+JpNlUlI46BKVyonGiaD74ravdnF9BUNC+vV+SIuB96hUMGShhKV693rF9QDfO6nQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.3.tgz", + "integrity": "sha512-R8cwY9wcnApN/KDYWTH4gV/ypvy9yZUHlbJvfaiXSB48JO3KpwSpjOGqO4jnGkLDSk1hgjYkTbTt6Q7uvPf8eg==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.3.tgz", + "integrity": "sha512-kZPbX/NOPh0vhS5sI+dR8L1bU2cSO9FgxwM8r7wHzGydzfSjLRCFAT87GR5U9scj2rhzN3JPYVC7NoBbl4FZ0g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.3.tgz", + "integrity": "sha512-S0Yq+xA1VEH66uiMNhijsWAafffydd2X5b77eLHfRmfLsRSpbiAWiRHV6DEpz6aOToPsgid7TI9rGd6zB1rhbg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.3.tgz", + "integrity": "sha512-9isNzeL34yquCPyerog+IMCNxKR8XYmGd0tHSV+OVx0TmE0aJOo9uw4fZfUuk2qxobP5sug6vNdZR6u7Mw7Q+Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.3.tgz", + "integrity": "sha512-nMIdKnfZfzn1Vsk+RuOvl43ONTZXoAPUUxgcU0tXooqg4YrAqzfKzVenqqk2g5efWh46/D28cKFrOzDSW28gTA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.3.tgz", + "integrity": "sha512-fOvu7PCQjAj4eWDEuD8Xz5gpzFqXzGlxHZozHP4b9Jxv9APtdxL6STqztDzMLuRXEc4UpXGGhx029Xgm91QBeA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@shikijs/core": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.17.7.tgz", + "integrity": "sha512-ZnIDxFu/yvje3Q8owSHaEHd+bu/jdWhHAaJ17ggjXofHx5rc4bhpCSW+OjC6smUBi5s5dd023jWtZ1gzMu/yrw==", + "dev": true, + "dependencies": { + "@shikijs/engine-javascript": "1.17.7", + "@shikijs/engine-oniguruma": "1.17.7", + "@shikijs/types": "1.17.7", + "@shikijs/vscode-textmate": "^9.2.2", + "@types/hast": "^3.0.4", + "hast-util-to-html": "^9.0.2" + } + }, + "node_modules/@shikijs/engine-javascript": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.17.7.tgz", + "integrity": "sha512-wwSf7lKPsm+hiYQdX+1WfOXujtnUG6fnN4rCmExxa4vo+OTmvZ9B1eKauilvol/LHUPrQgW12G3gzem7pY5ckw==", + "dev": true, + "dependencies": { + "@shikijs/types": "1.17.7", + "@shikijs/vscode-textmate": "^9.2.2", + "oniguruma-to-js": "0.4.3" + } + }, + "node_modules/@shikijs/engine-oniguruma": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.17.7.tgz", + "integrity": "sha512-pvSYGnVeEIconU28NEzBXqSQC/GILbuNbAHwMoSfdTBrobKAsV1vq2K4cAgiaW1TJceLV9QMGGh18hi7cCzbVQ==", + "dev": true, + "dependencies": { + "@shikijs/types": "1.17.7", + "@shikijs/vscode-textmate": "^9.2.2" + } + }, + "node_modules/@shikijs/transformers": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@shikijs/transformers/-/transformers-1.17.7.tgz", + "integrity": "sha512-Nu7DaUT/qHDqbEsWBBqX6MyPMFbR4hUZcK11TA+zU/nPu9eDFE8v0p+n+eT4A3+3mxX6czMSF81W4QNsQ/NSpQ==", + "dev": true, + "dependencies": { + "shiki": "1.17.7" + } + }, + "node_modules/@shikijs/types": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.17.7.tgz", + "integrity": "sha512-+qA4UyhWLH2q4EFd+0z4K7GpERDU+c+CN2XYD3sC+zjvAr5iuwD1nToXZMt1YODshjkEGEDV86G7j66bKjqDdg==", + "dev": true, + "dependencies": { + "@shikijs/vscode-textmate": "^9.2.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/@shikijs/vscode-textmate": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.2.2.tgz", + "integrity": "sha512-TMp15K+GGYrWlZM8+Lnj9EaHEFmOen0WJBrfa17hF7taDOYthuPPV0GWzfd/9iMij0akS/8Yw2ikquH7uVi/fg==", + "dev": true + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dev": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==", + "dev": true + }, + "node_modules/@types/markdown-it": { + "version": "14.1.2", + "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz", + "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==", + "dev": true, + "dependencies": { + "@types/linkify-it": "^5", + "@types/mdurl": "^2" + } + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "dev": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==", + "dev": true + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "dev": true + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.20", + "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz", + "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==", + "dev": true + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/@vitejs/plugin-vue": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.1.3.tgz", + "integrity": "sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==", + "dev": true, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.6", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.6.tgz", + "integrity": "sha512-r+gNu6K4lrvaQLQGmf+1gc41p3FO2OUJyWmNqaIITaJU6YFiV5PtQSFZt8jfztYyARwqhoCayjprC7KMvT3nRA==", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/shared": "3.5.6", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.6", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.6.tgz", + "integrity": "sha512-xRXqxDrIqK8v8sSScpistyYH0qYqxakpsIvqMD2e5sV/PXQ1mTwtXp4k42yHK06KXxKSmitop9e45Ui/3BrTEw==", + "dependencies": { + "@vue/compiler-core": "3.5.6", + "@vue/shared": "3.5.6" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.6", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.6.tgz", + "integrity": "sha512-pjWJ8Kj9TDHlbF5LywjVso+BIxCY5wVOLhkEXRhuCHDxPFIeX1zaFefKs8RYoHvkSMqRWt93a0f2gNJVJixHwg==", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/compiler-core": "3.5.6", + "@vue/compiler-dom": "3.5.6", + "@vue/compiler-ssr": "3.5.6", + "@vue/shared": "3.5.6", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.11", + "postcss": "^8.4.47", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.6", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.6.tgz", + "integrity": "sha512-VpWbaZrEOCqnmqjE83xdwegtr5qO/2OPUC6veWgvNqTJ3bYysz6vY3VqMuOijubuUYPRpG3OOKIh9TD0Stxb9A==", + "dependencies": { + "@vue/compiler-dom": "3.5.6", + "@vue/shared": "3.5.6" + } + }, + "node_modules/@vue/devtools-api": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.4.5.tgz", + "integrity": "sha512-PX9uXirHOY2P99kb1cP3DxWZojFW3acNMqd+l4i5nKcqY59trXTOfwDZXt2Qifu0OU1izAQb76Ur6NPVldF2KQ==", + "dev": true, + "dependencies": { + "@vue/devtools-kit": "^7.4.5" + } + }, + "node_modules/@vue/devtools-kit": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.4.5.tgz", + "integrity": "sha512-Uuki4Z6Bc/ExvtlPkeDNGSAe4580R+HPcVABfTE9TF7BTz3Nntk7vxIRUyWblZkUEcB/x+wn2uofyt5i2LaUew==", + "dev": true, + "dependencies": { + "@vue/devtools-shared": "^7.4.5", + "birpc": "^0.2.17", + "hookable": "^5.5.3", + "mitt": "^3.0.1", + "perfect-debounce": "^1.0.0", + "speakingurl": "^14.0.1", + "superjson": "^2.2.1" + } + }, + "node_modules/@vue/devtools-shared": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.4.5.tgz", + "integrity": "sha512-2XgUOkL/7QDmyYI9J7cm+rz/qBhcGv+W5+i1fhwdQ0HQ1RowhdK66F0QBuJSz/5k12opJY8eN6m03/XZMs7imQ==", + "dev": true, + "dependencies": { + "rfdc": "^1.4.1" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.6", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.6.tgz", + "integrity": "sha512-shZ+KtBoHna5GyUxWfoFVBCVd7k56m6lGhk5e+J9AKjheHF6yob5eukssHRI+rzvHBiU1sWs/1ZhNbLExc5oYQ==", + "dependencies": { + "@vue/shared": "3.5.6" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.6", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.6.tgz", + "integrity": "sha512-FpFULR6+c2lI+m1fIGONLDqPQO34jxV8g6A4wBOgne8eSRHP6PQL27+kWFIx5wNhhjkO7B4rgtsHAmWv7qKvbg==", + "dependencies": { + "@vue/reactivity": "3.5.6", + "@vue/shared": "3.5.6" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.6", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.6.tgz", + "integrity": "sha512-SDPseWre45G38ENH2zXRAHL1dw/rr5qp91lS4lt/nHvMr0MhsbCbihGAWLXNB/6VfFOJe2O+RBRkXU+CJF7/sw==", + "dependencies": { + "@vue/reactivity": "3.5.6", + "@vue/runtime-core": "3.5.6", + "@vue/shared": "3.5.6", + "csstype": "^3.1.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.6", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.6.tgz", + "integrity": "sha512-zivnxQnOnwEXVaT9CstJ64rZFXMS5ZkKxCjDQKiMSvUhXRzFLWZVbaBiNF4HGDqGNNsTgmjcCSmU6TB/0OOxLA==", + "dependencies": { + "@vue/compiler-ssr": "3.5.6", + "@vue/shared": "3.5.6" + }, + "peerDependencies": { + "vue": "3.5.6" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.6", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.6.tgz", + "integrity": "sha512-eidH0HInnL39z6wAt6SFIwBrvGOpDWsDxlw3rCgo1B+CQ1781WzQUSU3YjxgdkcJo9Q8S6LmXTkvI+cLHGkQfA==" + }, + "node_modules/@vueuse/core": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-11.0.3.tgz", + "integrity": "sha512-RENlh64+SYA9XMExmmH1a3TPqeIuJBNNB/63GT35MZI+zpru3oMRUA6cEFr9HmGqEgUisurwGwnIieF6qu3aXw==", + "dev": true, + "dependencies": { + "@types/web-bluetooth": "^0.0.20", + "@vueuse/metadata": "11.0.3", + "@vueuse/shared": "11.0.3", + "vue-demi": ">=0.14.10" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/core/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/@vueuse/integrations": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/integrations/-/integrations-11.0.3.tgz", + "integrity": "sha512-w6CDisaxs19S5Fd+NPPLFaA3GoX5gxuxrbTTBu0EYap7oH13w75L6C/+7e9mcoF9akhcR6GyYajwVMQEjdapJg==", + "dev": true, + "dependencies": { + "@vueuse/core": "11.0.3", + "@vueuse/shared": "11.0.3", + "vue-demi": ">=0.14.10" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "async-validator": "^4", + "axios": "^1", + "change-case": "^5", + "drauu": "^0.4", + "focus-trap": "^7", + "fuse.js": "^7", + "idb-keyval": "^6", + "jwt-decode": "^4", + "nprogress": "^0.2", + "qrcode": "^1.5", + "sortablejs": "^1", + "universal-cookie": "^7" + }, + "peerDependenciesMeta": { + "async-validator": { + "optional": true + }, + "axios": { + "optional": true + }, + "change-case": { + "optional": true + }, + "drauu": { + "optional": true + }, + "focus-trap": { + "optional": true + }, + "fuse.js": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "jwt-decode": { + "optional": true + }, + "nprogress": { + "optional": true + }, + "qrcode": { + "optional": true + }, + "sortablejs": { + "optional": true + }, + "universal-cookie": { + "optional": true + } + } + }, + "node_modules/@vueuse/integrations/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/@vueuse/metadata": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-11.0.3.tgz", + "integrity": "sha512-+FtbO4SD5WpsOcQTcC0hAhNlOid6QNLzqedtquTtQ+CRNBoAt9GuV07c6KNHK1wCmlq8DFPwgiLF2rXwgSHX5Q==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-11.0.3.tgz", + "integrity": "sha512-0rY2m6HS5t27n/Vp5cTDsKTlNnimCqsbh/fmT2LgE+aaU42EMfXo8+bNX91W9I7DDmxfuACXMmrd7d79JxkqWA==", + "dev": true, + "dependencies": { + "vue-demi": ">=0.14.10" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/algoliasearch": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.24.0.tgz", + "integrity": "sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==", + "dev": true, + "dependencies": { + "@algolia/cache-browser-local-storage": "4.24.0", + "@algolia/cache-common": "4.24.0", + "@algolia/cache-in-memory": "4.24.0", + "@algolia/client-account": "4.24.0", + "@algolia/client-analytics": "4.24.0", + "@algolia/client-common": "4.24.0", + "@algolia/client-personalization": "4.24.0", + "@algolia/client-search": "4.24.0", + "@algolia/logger-common": "4.24.0", + "@algolia/logger-console": "4.24.0", + "@algolia/recommend": "4.24.0", + "@algolia/requester-browser-xhr": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/requester-node-http": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/algoliasearch/node_modules/@algolia/client-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", + "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", + "dev": true, + "dependencies": { + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/algoliasearch/node_modules/@algolia/client-search": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", + "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", + "dev": true, + "dependencies": { + "@algolia/client-common": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/algoliasearch/node_modules/@algolia/requester-browser-xhr": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.24.0.tgz", + "integrity": "sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==", + "dev": true, + "dependencies": { + "@algolia/requester-common": "4.24.0" + } + }, + "node_modules/algoliasearch/node_modules/@algolia/requester-node-http": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.24.0.tgz", + "integrity": "sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==", + "dev": true, + "dependencies": { + "@algolia/requester-common": "4.24.0" + } + }, + "node_modules/birpc": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/birpc/-/birpc-0.2.17.tgz", + "integrity": "sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/copy-anything": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz", + "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", + "dev": true, + "dependencies": { + "is-what": "^4.1.8" + }, + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "dev": true, + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/focus-trap": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.0.tgz", + "integrity": "sha512-1td0l3pMkWJLFipobUcGaf+5DTY4PLDDrcqoSaKP8ediO/CoWCCYk/fT/Y2A4e6TNB+Sh6clRJCjOPPnKoNHnQ==", + "dev": true, + "dependencies": { + "tabbable": "^6.2.0" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/hast-util-to-html": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.2.tgz", + "integrity": "sha512-RP5wNpj5nm1Z8cloDv4Sl4RS8jH5HYa0v93YB6Wb4poEzgMo/dAAL0KcT4974dCjcNG5pkLqTImeFHHCwwfY3g==", + "dev": true, + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-whitespace": "^3.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "stringify-entities": "^4.0.0", + "zwitch": "^2.0.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "dev": true, + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hookable": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", + "dev": true + }, + "node_modules/html-void-elements": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-what": { + "version": "4.1.16", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz", + "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", + "dev": true, + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/magic-string": { + "version": "0.30.11", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", + "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "node_modules/mark.js": { + "version": "8.11.1", + "resolved": "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz", + "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==", + "dev": true + }, + "node_modules/markdown-it-container": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/markdown-it-container/-/markdown-it-container-4.0.0.tgz", + "integrity": "sha512-HaNccxUH0l7BNGYbFbjmGpf5aLHAMTinqRZQAEQbMr2cdD3z91Q6kIo1oUn1CQndkT03jat6ckrdRYuwwqLlQw==" + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", + "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", + "dev": true, + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", + "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", + "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/minisearch": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/minisearch/-/minisearch-7.1.0.tgz", + "integrity": "sha512-tv7c/uefWdEhcu6hvrfTihflgeEi2tN6VV7HJnCjK6VxM75QQJh4t9FwJCsA2EsRS8LCnu3W87CuGPWMocOLCA==", + "dev": true + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/oniguruma-to-js": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/oniguruma-to-js/-/oniguruma-to-js-0.4.3.tgz", + "integrity": "sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==", + "dev": true, + "dependencies": { + "regex": "^4.3.2" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/perfect-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", + "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==" + }, + "node_modules/postcss": { + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/preact": { + "version": "10.24.0", + "resolved": "https://registry.npmjs.org/preact/-/preact-10.24.0.tgz", + "integrity": "sha512-aK8Cf+jkfyuZ0ZZRG9FbYqwmEiGQ4y/PUO4SuTWoyWL244nZZh7bd5h2APd4rSNDYTBNghg1L+5iJN3Skxtbsw==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/preact" + } + }, + "node_modules/property-information": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/regex": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/regex/-/regex-4.3.2.tgz", + "integrity": "sha512-kK/AA3A9K6q2js89+VMymcboLOlF5lZRCYJv3gzszXFHBr6kO6qLGzbm+UIugBEV8SMMKCTR59txoY6ctRHYVw==", + "dev": true + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true + }, + "node_modules/rollup": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.21.3.tgz", + "integrity": "sha512-7sqRtBNnEbcBtMeRVc6VRsJMmpI+JU1z9VTvW8D4gXIYQFz0aLcsE6rRkyghZkLfEgUZgVvOG7A5CVz/VW5GIA==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.21.3", + "@rollup/rollup-android-arm64": "4.21.3", + "@rollup/rollup-darwin-arm64": "4.21.3", + "@rollup/rollup-darwin-x64": "4.21.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.21.3", + "@rollup/rollup-linux-arm-musleabihf": "4.21.3", + "@rollup/rollup-linux-arm64-gnu": "4.21.3", + "@rollup/rollup-linux-arm64-musl": "4.21.3", + "@rollup/rollup-linux-powerpc64le-gnu": "4.21.3", + "@rollup/rollup-linux-riscv64-gnu": "4.21.3", + "@rollup/rollup-linux-s390x-gnu": "4.21.3", + "@rollup/rollup-linux-x64-gnu": "4.21.3", + "@rollup/rollup-linux-x64-musl": "4.21.3", + "@rollup/rollup-win32-arm64-msvc": "4.21.3", + "@rollup/rollup-win32-ia32-msvc": "4.21.3", + "@rollup/rollup-win32-x64-msvc": "4.21.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/search-insights": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.17.2.tgz", + "integrity": "sha512-zFNpOpUO+tY2D85KrxJ+aqwnIfdEGi06UH2+xEb+Bp9Mwznmauqc9djbnBibJO5mpfUPPa8st6Sx65+vbeO45g==", + "dev": true, + "peer": true + }, + "node_modules/shiki": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.17.7.tgz", + "integrity": "sha512-Zf6hNtWhFyF4XP5OOsXkBTEx9JFPiN0TQx4wSe+Vqeuczewgk2vT4IZhF4gka55uelm052BD5BaHavNqUNZd+A==", + "dev": true, + "dependencies": { + "@shikijs/core": "1.17.7", + "@shikijs/engine-javascript": "1.17.7", + "@shikijs/engine-oniguruma": "1.17.7", + "@shikijs/types": "1.17.7", + "@shikijs/vscode-textmate": "^9.2.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/speakingurl": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz", + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "dev": true, + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/superjson": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.1.tgz", + "integrity": "sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==", + "dev": true, + "dependencies": { + "copy-anything": "^3.0.2" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/tabbable": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", + "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", + "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", + "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", + "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vite": { + "version": "5.4.7", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.7.tgz", + "integrity": "sha512-5l2zxqMEPVENgvzTuBpHer2awaetimj2BGkhBPdnwKbPNOlHsODU+oiazEZzLK7KhAnOrO+XGYJYn4ZlUhDtDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vitepress": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.3.4.tgz", + "integrity": "sha512-I1/F6OW1xl3kW4PaIMC6snxjWgf3qfziq2aqsDoFc/Gt41WbcRv++z8zjw8qGRIJ+I4bUW7ZcKFDHHN/jkH9DQ==", + "dev": true, + "dependencies": { + "@docsearch/css": "^3.6.1", + "@docsearch/js": "^3.6.1", + "@shikijs/core": "^1.13.0", + "@shikijs/transformers": "^1.13.0", + "@types/markdown-it": "^14.1.2", + "@vitejs/plugin-vue": "^5.1.2", + "@vue/devtools-api": "^7.3.8", + "@vue/shared": "^3.4.38", + "@vueuse/core": "^11.0.0", + "@vueuse/integrations": "^11.0.0", + "focus-trap": "^7.5.4", + "mark.js": "8.11.1", + "minisearch": "^7.1.0", + "shiki": "^1.13.0", + "vite": "^5.4.1", + "vue": "^3.4.38" + }, + "bin": { + "vitepress": "bin/vitepress.js" + }, + "peerDependencies": { + "markdown-it-mathjax3": "^4", + "postcss": "^8" + }, + "peerDependenciesMeta": { + "markdown-it-mathjax3": { + "optional": true + }, + "postcss": { + "optional": true + } + } + }, + "node_modules/vue": { + "version": "3.5.6", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.6.tgz", + "integrity": "sha512-zv+20E2VIYbcJOzJPUWp03NOGFhMmpCKOfSxVTmCYyYFFko48H9tmuQFzYj7tu4qX1AeXlp9DmhIP89/sSxxhw==", + "dependencies": { + "@vue/compiler-dom": "3.5.6", + "@vue/compiler-sfc": "3.5.6", + "@vue/runtime-dom": "3.5.6", + "@vue/server-renderer": "3.5.6", + "@vue/shared": "3.5.6" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 00000000000..34b03acd7dc --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "devDependencies": { + "vitepress": "^1.3.4" + }, + "scripts": { + "docs:dev": "vitepress dev docs", + "docs:build": "vitepress build docs", + "docs:preview": "vitepress preview docs" + }, + "dependencies": { + "@fortawesome/fontawesome-svg-core": "^6.6.0", + "@fortawesome/free-solid-svg-icons": "^6.6.0", + "@fortawesome/vue-fontawesome": "^3.0.8", + "markdown-it-container": "^4.0.0" + } +} diff --git a/translations/ar_SA/docs/extras/about.md b/translations/ar_SA/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/ar_SA/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/ar_SA/docs/extras/block-updates.md b/translations/ar_SA/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/ar_SA/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/ar_SA/docs/extras/configurable-payload.md b/translations/ar_SA/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/ar_SA/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/ar_SA/docs/extras/donations.md b/translations/ar_SA/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/ar_SA/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/ar_SA/docs/extras/dump-games.md b/translations/ar_SA/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/ar_SA/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/ar_SA/docs/extras/dump-wii-games.md b/translations/ar_SA/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/ar_SA/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/ar_SA/docs/extras/faq.md b/translations/ar_SA/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/ar_SA/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/ar_SA/docs/extras/find-wiiu-ip-address.md b/translations/ar_SA/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/ar_SA/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/ar_SA/docs/extras/unblock-updates.md b/translations/ar_SA/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/ar_SA/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/ar_SA/docs/extras/uninstall-cbhc.md b/translations/ar_SA/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/ar_SA/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/ar_SA/docs/extras/uninstall-indexiine.md b/translations/ar_SA/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/ar_SA/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/ar_SA/docs/privacy/privacy-policy.md b/translations/ar_SA/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/ar_SA/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/ar_SA/docs/sidebar.md b/translations/ar_SA/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/ar_SA/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/ar_SA/docs/troubleshooting/common-issues-fixes.md b/translations/ar_SA/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/ar_SA/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/ar_SA/docs/troubleshooting/fix-errcode-112-1037.md b/translations/ar_SA/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/ar_SA/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/ar_SA/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/ar_SA/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/ar_SA/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/ar_SA/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/ar_SA/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/ar_SA/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ar_SA/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/ar_SA/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/ar_SA/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/cbhc/nand-backup.md b/translations/ar_SA/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/ar_SA/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ar_SA/docs/user-guide/archive/cbhc/sidebar.md b/translations/ar_SA/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/cfw-choice.md b/translations/ar_SA/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ar_SA/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/ar_SA/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/ar_SA/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ar_SA/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/ar_SA/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/ar_SA/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/haxchi/nand-backup.md b/translations/ar_SA/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/ar_SA/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ar_SA/docs/user-guide/archive/haxchi/sidebar.md b/translations/ar_SA/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/ar_SA/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/mocha/sidebar.md b/translations/ar_SA/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/sidebar.md b/translations/ar_SA/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/ar_SA/docs/user-guide/archive/tiramisu/autoboot.md b/translations/ar_SA/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ar_SA/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/ar_SA/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ar_SA/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/ar_SA/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/ar_SA/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/ar_SA/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/ar_SA/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ar_SA/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/ar_SA/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ar_SA/docs/user-guide/archive/tiramisu/sidebar.md b/translations/ar_SA/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ar_SA/docs/user-guide/archive/vwii/browser-exploit.md b/translations/ar_SA/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ar_SA/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/ar_SA/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ar_SA/docs/user-guide/archive/vwii/installing-cioses.md b/translations/ar_SA/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ar_SA/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/ar_SA/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ar_SA/docs/user-guide/archive/vwii/nand-backup.md b/translations/ar_SA/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ar_SA/docs/user-guide/archive/vwii/patching-ios80.md b/translations/ar_SA/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ar_SA/docs/user-guide/archive/vwii/sd-preparation.md b/translations/ar_SA/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ar_SA/docs/user-guide/archive/vwii/sidebar.md b/translations/ar_SA/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/ar_SA/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ar_SA/docs/user-guide/aroma/autoboot.md b/translations/ar_SA/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/ar_SA/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/ar_SA/docs/user-guide/aroma/browser-exploit.md b/translations/ar_SA/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/ar_SA/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/ar_SA/docs/user-guide/aroma/finalizing-setup.md b/translations/ar_SA/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/ar_SA/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/ar_SA/docs/user-guide/aroma/getting-started.md b/translations/ar_SA/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/ar_SA/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/ar_SA/docs/user-guide/aroma/installing-payloadloader.md b/translations/ar_SA/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/ar_SA/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/ar_SA/docs/user-guide/aroma/nand-backup.md b/translations/ar_SA/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/ar_SA/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/ar_SA/docs/user-guide/aroma/sd-preparation.md b/translations/ar_SA/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/ar_SA/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/ar_SA/docs/user-guide/aroma/sidebar.md b/translations/ar_SA/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/ar_SA/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ar_SA/docs/user-guide/cbhc/browser-exploit.md b/translations/ar_SA/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/ar_SA/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/cbhc/ds-vc-choice.md b/translations/ar_SA/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/ar_SA/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ar_SA/docs/user-guide/cbhc/installing-hblc.md b/translations/ar_SA/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/ar_SA/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/cbhc/launching-cfw.md b/translations/ar_SA/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/ar_SA/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/cbhc/nand-backup.md b/translations/ar_SA/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/ar_SA/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/cbhc/sd-preparation.md b/translations/ar_SA/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/ar_SA/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ar_SA/docs/user-guide/cbhc/sidebar.md b/translations/ar_SA/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/ar_SA/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/cfw-choice.md b/translations/ar_SA/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/ar_SA/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ar_SA/docs/user-guide/haxchi/browser-exploit.md b/translations/ar_SA/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/ar_SA/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/haxchi/ds-vc-choice.md b/translations/ar_SA/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/ar_SA/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ar_SA/docs/user-guide/haxchi/installing-hblc.md b/translations/ar_SA/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/ar_SA/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/haxchi/launching-cfw.md b/translations/ar_SA/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/ar_SA/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/haxchi/nand-backup.md b/translations/ar_SA/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/ar_SA/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/haxchi/sd-preparation.md b/translations/ar_SA/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/ar_SA/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ar_SA/docs/user-guide/haxchi/sidebar.md b/translations/ar_SA/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/ar_SA/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/introduction.md b/translations/ar_SA/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/ar_SA/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/ar_SA/docs/user-guide/mocha/entrypoint-choice.md b/translations/ar_SA/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/ar_SA/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/ar_SA/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/ar_SA/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/ar_SA/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/ar_SA/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/ar_SA/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ar_SA/docs/user-guide/mocha/indexiine/sidebar.md b/translations/ar_SA/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/ar_SA/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/ar_SA/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/ar_SA/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/ar_SA/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ar_SA/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/ar_SA/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/mocha/sidebar.md b/translations/ar_SA/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/ar_SA/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/tiramisu/autoboot.md b/translations/ar_SA/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/ar_SA/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ar_SA/docs/user-guide/tiramisu/browser-exploit.md b/translations/ar_SA/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ar_SA/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ar_SA/docs/user-guide/tiramisu/finalizing-setup.md b/translations/ar_SA/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/ar_SA/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/ar_SA/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/ar_SA/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ar_SA/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ar_SA/docs/user-guide/tiramisu/nand-backup.md b/translations/ar_SA/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/ar_SA/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ar_SA/docs/user-guide/tiramisu/sd-preparation.md b/translations/ar_SA/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/ar_SA/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ar_SA/docs/user-guide/tiramisu/sidebar.md b/translations/ar_SA/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/ar_SA/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ar_SA/docs/user-guide/vwii/browser-exploit.md b/translations/ar_SA/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ar_SA/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ar_SA/docs/user-guide/vwii/finalizing-setup.md b/translations/ar_SA/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ar_SA/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ar_SA/docs/user-guide/vwii/installing-cioses.md b/translations/ar_SA/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ar_SA/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ar_SA/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/ar_SA/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ar_SA/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ar_SA/docs/user-guide/vwii/nand-backup.md b/translations/ar_SA/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ar_SA/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ar_SA/docs/user-guide/vwii/patching-ios80.md b/translations/ar_SA/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ar_SA/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ar_SA/docs/user-guide/vwii/sd-preparation.md b/translations/ar_SA/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ar_SA/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ar_SA/docs/user-guide/vwii/sidebar.md b/translations/ar_SA/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/ar_SA/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ar_SA/docs/user-guide/vwii/vwii-modding.md b/translations/ar_SA/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/ar_SA/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/ar_SA/docs/vwii/vwii-modding.md b/translations/ar_SA/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/ar_SA/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ca_ES/docs/extras/about.md b/translations/ca_ES/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/ca_ES/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/ca_ES/docs/extras/block-updates.md b/translations/ca_ES/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/ca_ES/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/ca_ES/docs/extras/configurable-payload.md b/translations/ca_ES/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/ca_ES/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/ca_ES/docs/extras/donations.md b/translations/ca_ES/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/ca_ES/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/ca_ES/docs/extras/dump-games.md b/translations/ca_ES/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/ca_ES/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/ca_ES/docs/extras/dump-wii-games.md b/translations/ca_ES/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/ca_ES/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/ca_ES/docs/extras/faq.md b/translations/ca_ES/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/ca_ES/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/ca_ES/docs/extras/find-wiiu-ip-address.md b/translations/ca_ES/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/ca_ES/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/ca_ES/docs/extras/unblock-updates.md b/translations/ca_ES/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/ca_ES/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/ca_ES/docs/extras/uninstall-indexiine.md b/translations/ca_ES/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/ca_ES/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/ca_ES/docs/extras/uninstall-payloadloader.md b/translations/ca_ES/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/ca_ES/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/ca_ES/docs/privacy/privacy-policy.md b/translations/ca_ES/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/ca_ES/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/ca_ES/docs/sidebar.md b/translations/ca_ES/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/ca_ES/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/ca_ES/docs/troubleshooting/common-issues-fixes.md b/translations/ca_ES/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/ca_ES/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/ca_ES/docs/troubleshooting/fix-errcode-112-1037.md b/translations/ca_ES/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/ca_ES/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/ca_ES/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/ca_ES/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/ca_ES/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/ca_ES/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/ca_ES/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/ca_ES/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ca_ES/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/ca_ES/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/ca_ES/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/cbhc/nand-backup.md b/translations/ca_ES/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/ca_ES/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ca_ES/docs/user-guide/archive/cbhc/sidebar.md b/translations/ca_ES/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/cfw-choice.md b/translations/ca_ES/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ca_ES/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/ca_ES/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/ca_ES/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ca_ES/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/ca_ES/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/ca_ES/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/haxchi/nand-backup.md b/translations/ca_ES/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/ca_ES/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ca_ES/docs/user-guide/archive/haxchi/sidebar.md b/translations/ca_ES/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/ca_ES/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/mocha/sidebar.md b/translations/ca_ES/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/sidebar.md b/translations/ca_ES/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/ca_ES/docs/user-guide/archive/tiramisu/autoboot.md b/translations/ca_ES/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ca_ES/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/ca_ES/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ca_ES/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/ca_ES/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/ca_ES/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/ca_ES/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/ca_ES/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ca_ES/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/ca_ES/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ca_ES/docs/user-guide/archive/tiramisu/sidebar.md b/translations/ca_ES/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ca_ES/docs/user-guide/archive/vwii/browser-exploit.md b/translations/ca_ES/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ca_ES/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/ca_ES/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ca_ES/docs/user-guide/archive/vwii/installing-cioses.md b/translations/ca_ES/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ca_ES/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/ca_ES/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ca_ES/docs/user-guide/archive/vwii/nand-backup.md b/translations/ca_ES/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ca_ES/docs/user-guide/archive/vwii/patching-ios80.md b/translations/ca_ES/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ca_ES/docs/user-guide/archive/vwii/sd-preparation.md b/translations/ca_ES/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ca_ES/docs/user-guide/archive/vwii/sidebar.md b/translations/ca_ES/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/ca_ES/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ca_ES/docs/user-guide/aroma/autoboot.md b/translations/ca_ES/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/ca_ES/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/ca_ES/docs/user-guide/aroma/browser-exploit.md b/translations/ca_ES/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/ca_ES/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/ca_ES/docs/user-guide/aroma/finalizing-setup.md b/translations/ca_ES/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/ca_ES/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/ca_ES/docs/user-guide/aroma/getting-started.md b/translations/ca_ES/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/ca_ES/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/ca_ES/docs/user-guide/aroma/installing-payloadloader.md b/translations/ca_ES/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/ca_ES/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/ca_ES/docs/user-guide/aroma/nand-backup.md b/translations/ca_ES/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/ca_ES/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/ca_ES/docs/user-guide/aroma/sd-preparation.md b/translations/ca_ES/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/ca_ES/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/ca_ES/docs/user-guide/aroma/sidebar.md b/translations/ca_ES/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/ca_ES/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ca_ES/docs/user-guide/cbhc/browser-exploit.md b/translations/ca_ES/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/ca_ES/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/cbhc/ds-vc-choice.md b/translations/ca_ES/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/ca_ES/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ca_ES/docs/user-guide/cbhc/installing-hblc.md b/translations/ca_ES/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/ca_ES/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/cbhc/launching-cfw.md b/translations/ca_ES/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/ca_ES/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/cbhc/nand-backup.md b/translations/ca_ES/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/ca_ES/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/cbhc/sd-preparation.md b/translations/ca_ES/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/ca_ES/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ca_ES/docs/user-guide/cbhc/sidebar.md b/translations/ca_ES/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/ca_ES/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/cfw-choice.md b/translations/ca_ES/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/ca_ES/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ca_ES/docs/user-guide/haxchi/browser-exploit.md b/translations/ca_ES/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/ca_ES/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/haxchi/ds-vc-choice.md b/translations/ca_ES/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/ca_ES/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ca_ES/docs/user-guide/haxchi/installing-hblc.md b/translations/ca_ES/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/ca_ES/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/haxchi/launching-cfw.md b/translations/ca_ES/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/ca_ES/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/haxchi/nand-backup.md b/translations/ca_ES/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/ca_ES/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/haxchi/sd-preparation.md b/translations/ca_ES/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/ca_ES/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ca_ES/docs/user-guide/haxchi/sidebar.md b/translations/ca_ES/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/ca_ES/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/introduction.md b/translations/ca_ES/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/ca_ES/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/ca_ES/docs/user-guide/mocha/entrypoint-choice.md b/translations/ca_ES/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/ca_ES/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/ca_ES/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/ca_ES/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/ca_ES/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/ca_ES/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/ca_ES/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ca_ES/docs/user-guide/mocha/indexiine/sidebar.md b/translations/ca_ES/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/ca_ES/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/ca_ES/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/ca_ES/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/ca_ES/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ca_ES/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/ca_ES/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/mocha/sidebar.md b/translations/ca_ES/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/ca_ES/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/tiramisu/autoboot.md b/translations/ca_ES/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/ca_ES/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ca_ES/docs/user-guide/tiramisu/browser-exploit.md b/translations/ca_ES/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ca_ES/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ca_ES/docs/user-guide/tiramisu/finalizing-setup.md b/translations/ca_ES/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/ca_ES/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/ca_ES/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/ca_ES/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ca_ES/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ca_ES/docs/user-guide/tiramisu/nand-backup.md b/translations/ca_ES/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/ca_ES/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ca_ES/docs/user-guide/tiramisu/sd-preparation.md b/translations/ca_ES/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/ca_ES/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ca_ES/docs/user-guide/tiramisu/sidebar.md b/translations/ca_ES/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/ca_ES/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ca_ES/docs/user-guide/vwii/browser-exploit.md b/translations/ca_ES/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ca_ES/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ca_ES/docs/user-guide/vwii/finalizing-setup.md b/translations/ca_ES/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ca_ES/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ca_ES/docs/user-guide/vwii/installing-cioses.md b/translations/ca_ES/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ca_ES/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ca_ES/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/ca_ES/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ca_ES/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ca_ES/docs/user-guide/vwii/nand-backup.md b/translations/ca_ES/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ca_ES/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ca_ES/docs/user-guide/vwii/patching-ios80.md b/translations/ca_ES/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ca_ES/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ca_ES/docs/user-guide/vwii/sd-preparation.md b/translations/ca_ES/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ca_ES/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ca_ES/docs/user-guide/vwii/sidebar.md b/translations/ca_ES/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/ca_ES/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ca_ES/docs/vwii/vwii-modding.md b/translations/ca_ES/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/ca_ES/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/cs_CZ/docs/extras/about.md b/translations/cs_CZ/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/cs_CZ/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/cs_CZ/docs/extras/block-updates.md b/translations/cs_CZ/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/cs_CZ/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/cs_CZ/docs/extras/configurable-payload.md b/translations/cs_CZ/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/cs_CZ/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/cs_CZ/docs/extras/donations.md b/translations/cs_CZ/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/cs_CZ/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/cs_CZ/docs/extras/dump-games.md b/translations/cs_CZ/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/cs_CZ/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/cs_CZ/docs/extras/dump-wii-games.md b/translations/cs_CZ/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/cs_CZ/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/cs_CZ/docs/extras/faq.md b/translations/cs_CZ/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/cs_CZ/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/cs_CZ/docs/extras/find-wiiu-ip-address.md b/translations/cs_CZ/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/cs_CZ/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/cs_CZ/docs/extras/unblock-updates.md b/translations/cs_CZ/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/cs_CZ/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/cs_CZ/docs/extras/uninstall-cbhc.md b/translations/cs_CZ/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/cs_CZ/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/cs_CZ/docs/extras/uninstall-indexiine.md b/translations/cs_CZ/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/cs_CZ/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/cs_CZ/docs/extras/uninstall-payloadloader.md b/translations/cs_CZ/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/cs_CZ/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/cs_CZ/docs/sidebar.md b/translations/cs_CZ/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/cs_CZ/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/cs_CZ/docs/troubleshooting/common-issues-fixes.md b/translations/cs_CZ/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/cs_CZ/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/cs_CZ/docs/troubleshooting/fix-errcode-112-1037.md b/translations/cs_CZ/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/cs_CZ/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/cs_CZ/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/cs_CZ/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/cs_CZ/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/cs_CZ/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/cs_CZ/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/cs_CZ/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/cs_CZ/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/cs_CZ/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/cs_CZ/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/cbhc/nand-backup.md b/translations/cs_CZ/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/cs_CZ/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/cs_CZ/docs/user-guide/archive/cbhc/sidebar.md b/translations/cs_CZ/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/cfw-choice.md b/translations/cs_CZ/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/cs_CZ/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/cs_CZ/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/cs_CZ/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/cs_CZ/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/cs_CZ/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/cs_CZ/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/haxchi/nand-backup.md b/translations/cs_CZ/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/cs_CZ/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/cs_CZ/docs/user-guide/archive/haxchi/sidebar.md b/translations/cs_CZ/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/cs_CZ/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/mocha/sidebar.md b/translations/cs_CZ/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/sidebar.md b/translations/cs_CZ/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/cs_CZ/docs/user-guide/archive/tiramisu/autoboot.md b/translations/cs_CZ/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/cs_CZ/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/cs_CZ/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/cs_CZ/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/cs_CZ/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/cs_CZ/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/cs_CZ/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/cs_CZ/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/cs_CZ/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/cs_CZ/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/cs_CZ/docs/user-guide/archive/tiramisu/sidebar.md b/translations/cs_CZ/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/cs_CZ/docs/user-guide/archive/vwii/browser-exploit.md b/translations/cs_CZ/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/cs_CZ/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/cs_CZ/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/cs_CZ/docs/user-guide/archive/vwii/installing-cioses.md b/translations/cs_CZ/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/cs_CZ/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/cs_CZ/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/cs_CZ/docs/user-guide/archive/vwii/nand-backup.md b/translations/cs_CZ/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/cs_CZ/docs/user-guide/archive/vwii/patching-ios80.md b/translations/cs_CZ/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/cs_CZ/docs/user-guide/archive/vwii/sd-preparation.md b/translations/cs_CZ/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/cs_CZ/docs/user-guide/archive/vwii/sidebar.md b/translations/cs_CZ/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/cs_CZ/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/cs_CZ/docs/user-guide/aroma/autoboot.md b/translations/cs_CZ/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/cs_CZ/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/cs_CZ/docs/user-guide/aroma/browser-exploit.md b/translations/cs_CZ/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/cs_CZ/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/cs_CZ/docs/user-guide/aroma/finalizing-setup.md b/translations/cs_CZ/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/cs_CZ/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/cs_CZ/docs/user-guide/aroma/getting-started.md b/translations/cs_CZ/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/cs_CZ/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/cs_CZ/docs/user-guide/aroma/installing-payloadloader.md b/translations/cs_CZ/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/cs_CZ/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/cs_CZ/docs/user-guide/aroma/nand-backup.md b/translations/cs_CZ/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/cs_CZ/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/cs_CZ/docs/user-guide/aroma/sd-preparation.md b/translations/cs_CZ/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/cs_CZ/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/cs_CZ/docs/user-guide/aroma/sidebar.md b/translations/cs_CZ/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/cs_CZ/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/cs_CZ/docs/user-guide/cbhc/browser-exploit.md b/translations/cs_CZ/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/cs_CZ/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/cbhc/ds-vc-choice.md b/translations/cs_CZ/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/cs_CZ/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/cs_CZ/docs/user-guide/cbhc/installing-hblc.md b/translations/cs_CZ/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/cs_CZ/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/cbhc/launching-cfw.md b/translations/cs_CZ/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/cs_CZ/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/cbhc/nand-backup.md b/translations/cs_CZ/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/cs_CZ/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/cbhc/sd-preparation.md b/translations/cs_CZ/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/cs_CZ/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/cs_CZ/docs/user-guide/cbhc/sidebar.md b/translations/cs_CZ/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/cs_CZ/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/cfw-choice.md b/translations/cs_CZ/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/cs_CZ/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/cs_CZ/docs/user-guide/haxchi/browser-exploit.md b/translations/cs_CZ/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/cs_CZ/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/haxchi/ds-vc-choice.md b/translations/cs_CZ/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/cs_CZ/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/cs_CZ/docs/user-guide/haxchi/installing-hblc.md b/translations/cs_CZ/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/cs_CZ/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/haxchi/launching-cfw.md b/translations/cs_CZ/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/cs_CZ/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/haxchi/nand-backup.md b/translations/cs_CZ/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/cs_CZ/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/haxchi/sd-preparation.md b/translations/cs_CZ/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/cs_CZ/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/cs_CZ/docs/user-guide/haxchi/sidebar.md b/translations/cs_CZ/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/cs_CZ/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/introduction.md b/translations/cs_CZ/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/cs_CZ/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/cs_CZ/docs/user-guide/mocha/entrypoint-choice.md b/translations/cs_CZ/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/cs_CZ/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/cs_CZ/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/cs_CZ/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/cs_CZ/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/cs_CZ/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/cs_CZ/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/cs_CZ/docs/user-guide/mocha/indexiine/sidebar.md b/translations/cs_CZ/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/cs_CZ/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/cs_CZ/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/cs_CZ/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/cs_CZ/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/cs_CZ/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/cs_CZ/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/mocha/sidebar.md b/translations/cs_CZ/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/cs_CZ/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/tiramisu/autoboot.md b/translations/cs_CZ/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/cs_CZ/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/cs_CZ/docs/user-guide/tiramisu/browser-exploit.md b/translations/cs_CZ/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/cs_CZ/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/cs_CZ/docs/user-guide/tiramisu/finalizing-setup.md b/translations/cs_CZ/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/cs_CZ/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/cs_CZ/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/cs_CZ/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/cs_CZ/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/cs_CZ/docs/user-guide/tiramisu/nand-backup.md b/translations/cs_CZ/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/cs_CZ/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/cs_CZ/docs/user-guide/tiramisu/sd-preparation.md b/translations/cs_CZ/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/cs_CZ/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/cs_CZ/docs/user-guide/tiramisu/sidebar.md b/translations/cs_CZ/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/cs_CZ/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/cs_CZ/docs/user-guide/vwii/browser-exploit.md b/translations/cs_CZ/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/cs_CZ/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/cs_CZ/docs/user-guide/vwii/finalizing-setup.md b/translations/cs_CZ/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/cs_CZ/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/cs_CZ/docs/user-guide/vwii/installing-cioses.md b/translations/cs_CZ/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/cs_CZ/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/cs_CZ/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/cs_CZ/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/cs_CZ/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/cs_CZ/docs/user-guide/vwii/nand-backup.md b/translations/cs_CZ/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/cs_CZ/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/cs_CZ/docs/user-guide/vwii/patching-ios80.md b/translations/cs_CZ/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/cs_CZ/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/cs_CZ/docs/user-guide/vwii/sd-preparation.md b/translations/cs_CZ/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/cs_CZ/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/cs_CZ/docs/user-guide/vwii/sidebar.md b/translations/cs_CZ/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/cs_CZ/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/cs_CZ/docs/user-guide/vwii/vwii-modding.md b/translations/cs_CZ/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/cs_CZ/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/cs_CZ/docs/vwii/vwii-modding.md b/translations/cs_CZ/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/cs_CZ/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/da_DK/docs/extras/about.md b/translations/da_DK/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/da_DK/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/da_DK/docs/extras/block-updates.md b/translations/da_DK/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/da_DK/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/da_DK/docs/extras/configurable-payload.md b/translations/da_DK/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/da_DK/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/da_DK/docs/extras/donations.md b/translations/da_DK/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/da_DK/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/da_DK/docs/extras/dump-games.md b/translations/da_DK/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/da_DK/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/da_DK/docs/extras/dump-wii-games.md b/translations/da_DK/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/da_DK/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/da_DK/docs/extras/faq.md b/translations/da_DK/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/da_DK/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/da_DK/docs/extras/find-wiiu-ip-address.md b/translations/da_DK/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/da_DK/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/da_DK/docs/extras/unblock-updates.md b/translations/da_DK/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/da_DK/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/da_DK/docs/extras/uninstall-cbhc.md b/translations/da_DK/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/da_DK/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/da_DK/docs/extras/uninstall-indexiine.md b/translations/da_DK/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/da_DK/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/da_DK/docs/extras/uninstall-payloadloader.md b/translations/da_DK/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/da_DK/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/da_DK/docs/privacy/privacy-policy.md b/translations/da_DK/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/da_DK/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/da_DK/docs/sidebar.md b/translations/da_DK/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/da_DK/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/da_DK/docs/troubleshooting/common-issues-fixes.md b/translations/da_DK/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/da_DK/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/da_DK/docs/troubleshooting/fix-errcode-112-1037.md b/translations/da_DK/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/da_DK/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/da_DK/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/da_DK/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/da_DK/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/da_DK/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/da_DK/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/da_DK/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/da_DK/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/da_DK/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/da_DK/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/da_DK/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/da_DK/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/da_DK/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/da_DK/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/cbhc/nand-backup.md b/translations/da_DK/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/da_DK/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/da_DK/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/da_DK/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/da_DK/docs/user-guide/archive/cbhc/sidebar.md b/translations/da_DK/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/da_DK/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/cfw-choice.md b/translations/da_DK/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/da_DK/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/da_DK/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/da_DK/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/da_DK/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/da_DK/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/da_DK/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/da_DK/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/da_DK/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/da_DK/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/da_DK/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/da_DK/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/haxchi/nand-backup.md b/translations/da_DK/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/da_DK/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/da_DK/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/da_DK/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/da_DK/docs/user-guide/archive/haxchi/sidebar.md b/translations/da_DK/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/da_DK/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/da_DK/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/da_DK/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/da_DK/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/da_DK/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/da_DK/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/da_DK/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/da_DK/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/mocha/sidebar.md b/translations/da_DK/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/da_DK/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/sidebar.md b/translations/da_DK/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/da_DK/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/da_DK/docs/user-guide/archive/tiramisu/autoboot.md b/translations/da_DK/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/da_DK/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/da_DK/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/da_DK/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/da_DK/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/da_DK/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/da_DK/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/da_DK/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/da_DK/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/da_DK/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/da_DK/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/da_DK/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/da_DK/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/da_DK/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/da_DK/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/da_DK/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/da_DK/docs/user-guide/archive/tiramisu/sidebar.md b/translations/da_DK/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/da_DK/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/da_DK/docs/user-guide/archive/vwii/browser-exploit.md b/translations/da_DK/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/da_DK/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/da_DK/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/da_DK/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/da_DK/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/da_DK/docs/user-guide/archive/vwii/installing-cioses.md b/translations/da_DK/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/da_DK/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/da_DK/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/da_DK/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/da_DK/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/da_DK/docs/user-guide/archive/vwii/nand-backup.md b/translations/da_DK/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/da_DK/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/da_DK/docs/user-guide/archive/vwii/patching-ios80.md b/translations/da_DK/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/da_DK/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/da_DK/docs/user-guide/archive/vwii/sd-preparation.md b/translations/da_DK/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/da_DK/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/da_DK/docs/user-guide/archive/vwii/sidebar.md b/translations/da_DK/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/da_DK/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/da_DK/docs/user-guide/aroma/autoboot.md b/translations/da_DK/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/da_DK/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/da_DK/docs/user-guide/aroma/browser-exploit.md b/translations/da_DK/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/da_DK/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/da_DK/docs/user-guide/aroma/finalizing-setup.md b/translations/da_DK/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/da_DK/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/da_DK/docs/user-guide/aroma/getting-started.md b/translations/da_DK/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/da_DK/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/da_DK/docs/user-guide/aroma/installing-payloadloader.md b/translations/da_DK/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/da_DK/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/da_DK/docs/user-guide/aroma/nand-backup.md b/translations/da_DK/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/da_DK/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/da_DK/docs/user-guide/aroma/sd-preparation.md b/translations/da_DK/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/da_DK/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/da_DK/docs/user-guide/aroma/sidebar.md b/translations/da_DK/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/da_DK/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/da_DK/docs/user-guide/cbhc/browser-exploit.md b/translations/da_DK/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/da_DK/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/cbhc/ds-vc-choice.md b/translations/da_DK/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/da_DK/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/da_DK/docs/user-guide/cbhc/installing-hblc.md b/translations/da_DK/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/da_DK/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/cbhc/launching-cfw.md b/translations/da_DK/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/da_DK/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/cbhc/nand-backup.md b/translations/da_DK/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/da_DK/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/cbhc/sd-preparation.md b/translations/da_DK/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/da_DK/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/da_DK/docs/user-guide/cbhc/sidebar.md b/translations/da_DK/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/da_DK/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/cfw-choice.md b/translations/da_DK/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/da_DK/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/da_DK/docs/user-guide/haxchi/browser-exploit.md b/translations/da_DK/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/da_DK/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/haxchi/ds-vc-choice.md b/translations/da_DK/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/da_DK/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/da_DK/docs/user-guide/haxchi/installing-hblc.md b/translations/da_DK/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/da_DK/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/haxchi/launching-cfw.md b/translations/da_DK/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/da_DK/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/haxchi/nand-backup.md b/translations/da_DK/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/da_DK/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/haxchi/sd-preparation.md b/translations/da_DK/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/da_DK/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/da_DK/docs/user-guide/haxchi/sidebar.md b/translations/da_DK/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/da_DK/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/introduction.md b/translations/da_DK/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/da_DK/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/da_DK/docs/user-guide/mocha/entrypoint-choice.md b/translations/da_DK/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/da_DK/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/da_DK/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/da_DK/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/da_DK/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/da_DK/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/da_DK/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/da_DK/docs/user-guide/mocha/indexiine/sidebar.md b/translations/da_DK/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/da_DK/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/da_DK/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/da_DK/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/da_DK/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/da_DK/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/da_DK/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/mocha/sidebar.md b/translations/da_DK/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/da_DK/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/tiramisu/autoboot.md b/translations/da_DK/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/da_DK/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/da_DK/docs/user-guide/tiramisu/browser-exploit.md b/translations/da_DK/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/da_DK/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/da_DK/docs/user-guide/tiramisu/finalizing-setup.md b/translations/da_DK/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/da_DK/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/da_DK/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/da_DK/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/da_DK/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/da_DK/docs/user-guide/tiramisu/nand-backup.md b/translations/da_DK/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/da_DK/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/da_DK/docs/user-guide/tiramisu/sd-preparation.md b/translations/da_DK/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/da_DK/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/da_DK/docs/user-guide/tiramisu/sidebar.md b/translations/da_DK/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/da_DK/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/da_DK/docs/user-guide/vwii/browser-exploit.md b/translations/da_DK/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/da_DK/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/da_DK/docs/user-guide/vwii/finalizing-setup.md b/translations/da_DK/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/da_DK/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/da_DK/docs/user-guide/vwii/installing-cioses.md b/translations/da_DK/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/da_DK/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/da_DK/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/da_DK/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/da_DK/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/da_DK/docs/user-guide/vwii/nand-backup.md b/translations/da_DK/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/da_DK/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/da_DK/docs/user-guide/vwii/patching-ios80.md b/translations/da_DK/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/da_DK/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/da_DK/docs/user-guide/vwii/sd-preparation.md b/translations/da_DK/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/da_DK/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/da_DK/docs/user-guide/vwii/sidebar.md b/translations/da_DK/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/da_DK/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/da_DK/docs/user-guide/vwii/vwii-modding.md b/translations/da_DK/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/da_DK/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/da_DK/docs/vwii/vwii-modding.md b/translations/da_DK/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/da_DK/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/de_DE/docs/extras/about.md b/translations/de_DE/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/de_DE/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/de_DE/docs/extras/block-updates.md b/translations/de_DE/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/de_DE/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/de_DE/docs/extras/configurable-payload.md b/translations/de_DE/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/de_DE/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/de_DE/docs/extras/donations.md b/translations/de_DE/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/de_DE/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/de_DE/docs/extras/dump-games.md b/translations/de_DE/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/de_DE/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/de_DE/docs/extras/dump-wii-games.md b/translations/de_DE/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/de_DE/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/de_DE/docs/extras/faq.md b/translations/de_DE/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/de_DE/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/de_DE/docs/extras/find-wiiu-ip-address.md b/translations/de_DE/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/de_DE/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/de_DE/docs/extras/unblock-updates.md b/translations/de_DE/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/de_DE/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/de_DE/docs/extras/uninstall-cbhc.md b/translations/de_DE/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/de_DE/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/de_DE/docs/extras/uninstall-indexiine.md b/translations/de_DE/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/de_DE/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/de_DE/docs/extras/uninstall-payloadloader.md b/translations/de_DE/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/de_DE/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/de_DE/docs/privacy/privacy-policy.md b/translations/de_DE/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/de_DE/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/de_DE/docs/sidebar.md b/translations/de_DE/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/de_DE/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/de_DE/docs/troubleshooting/common-issues-fixes.md b/translations/de_DE/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/de_DE/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/de_DE/docs/troubleshooting/fix-errcode-112-1037.md b/translations/de_DE/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/de_DE/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/de_DE/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/de_DE/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/de_DE/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/de_DE/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/de_DE/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/de_DE/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/de_DE/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/de_DE/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/de_DE/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/de_DE/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/de_DE/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/de_DE/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/de_DE/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/cbhc/nand-backup.md b/translations/de_DE/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/de_DE/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/de_DE/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/de_DE/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/de_DE/docs/user-guide/archive/cbhc/sidebar.md b/translations/de_DE/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/de_DE/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/cfw-choice.md b/translations/de_DE/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/de_DE/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/de_DE/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/de_DE/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/de_DE/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/de_DE/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/de_DE/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/de_DE/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/de_DE/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/de_DE/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/de_DE/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/de_DE/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/haxchi/nand-backup.md b/translations/de_DE/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/de_DE/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/de_DE/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/de_DE/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/de_DE/docs/user-guide/archive/haxchi/sidebar.md b/translations/de_DE/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/de_DE/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/de_DE/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/de_DE/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/de_DE/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/de_DE/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/de_DE/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/de_DE/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/de_DE/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/mocha/sidebar.md b/translations/de_DE/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/de_DE/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/sidebar.md b/translations/de_DE/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/de_DE/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/de_DE/docs/user-guide/archive/tiramisu/autoboot.md b/translations/de_DE/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/de_DE/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/de_DE/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/de_DE/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/de_DE/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/de_DE/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/de_DE/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/de_DE/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/de_DE/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/de_DE/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/de_DE/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/de_DE/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/de_DE/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/de_DE/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/de_DE/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/de_DE/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/de_DE/docs/user-guide/archive/tiramisu/sidebar.md b/translations/de_DE/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/de_DE/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/de_DE/docs/user-guide/archive/vwii/browser-exploit.md b/translations/de_DE/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/de_DE/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/de_DE/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/de_DE/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/de_DE/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/de_DE/docs/user-guide/archive/vwii/installing-cioses.md b/translations/de_DE/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/de_DE/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/de_DE/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/de_DE/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/de_DE/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/de_DE/docs/user-guide/archive/vwii/nand-backup.md b/translations/de_DE/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/de_DE/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/de_DE/docs/user-guide/archive/vwii/patching-ios80.md b/translations/de_DE/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/de_DE/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/de_DE/docs/user-guide/archive/vwii/sd-preparation.md b/translations/de_DE/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/de_DE/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/de_DE/docs/user-guide/archive/vwii/sidebar.md b/translations/de_DE/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/de_DE/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/de_DE/docs/user-guide/aroma/autoboot.md b/translations/de_DE/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/de_DE/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/de_DE/docs/user-guide/aroma/browser-exploit.md b/translations/de_DE/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/de_DE/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/de_DE/docs/user-guide/aroma/finalizing-setup.md b/translations/de_DE/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/de_DE/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/de_DE/docs/user-guide/aroma/getting-started.md b/translations/de_DE/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/de_DE/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/de_DE/docs/user-guide/aroma/installing-payloadloader.md b/translations/de_DE/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/de_DE/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/de_DE/docs/user-guide/aroma/nand-backup.md b/translations/de_DE/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/de_DE/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/de_DE/docs/user-guide/aroma/sd-preparation.md b/translations/de_DE/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/de_DE/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/de_DE/docs/user-guide/aroma/sidebar.md b/translations/de_DE/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/de_DE/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/de_DE/docs/user-guide/cbhc/browser-exploit.md b/translations/de_DE/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/de_DE/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/cbhc/ds-vc-choice.md b/translations/de_DE/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/de_DE/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/de_DE/docs/user-guide/cbhc/installing-hblc.md b/translations/de_DE/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/de_DE/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/cbhc/launching-cfw.md b/translations/de_DE/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/de_DE/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/cbhc/nand-backup.md b/translations/de_DE/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/de_DE/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/cbhc/sd-preparation.md b/translations/de_DE/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/de_DE/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/de_DE/docs/user-guide/cbhc/sidebar.md b/translations/de_DE/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/de_DE/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/cfw-choice.md b/translations/de_DE/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/de_DE/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/de_DE/docs/user-guide/haxchi/browser-exploit.md b/translations/de_DE/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/de_DE/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/haxchi/ds-vc-choice.md b/translations/de_DE/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/de_DE/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/de_DE/docs/user-guide/haxchi/installing-hblc.md b/translations/de_DE/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/de_DE/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/haxchi/launching-cfw.md b/translations/de_DE/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/de_DE/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/haxchi/nand-backup.md b/translations/de_DE/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/de_DE/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/haxchi/sd-preparation.md b/translations/de_DE/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/de_DE/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/de_DE/docs/user-guide/haxchi/sidebar.md b/translations/de_DE/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/de_DE/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/introduction.md b/translations/de_DE/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/de_DE/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/de_DE/docs/user-guide/mocha/entrypoint-choice.md b/translations/de_DE/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/de_DE/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/de_DE/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/de_DE/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/de_DE/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/de_DE/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/de_DE/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/de_DE/docs/user-guide/mocha/indexiine/sidebar.md b/translations/de_DE/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/de_DE/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/de_DE/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/de_DE/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/de_DE/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/de_DE/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/de_DE/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/mocha/sidebar.md b/translations/de_DE/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/de_DE/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/tiramisu/autoboot.md b/translations/de_DE/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/de_DE/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/de_DE/docs/user-guide/tiramisu/browser-exploit.md b/translations/de_DE/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/de_DE/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/de_DE/docs/user-guide/tiramisu/finalizing-setup.md b/translations/de_DE/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/de_DE/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/de_DE/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/de_DE/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/de_DE/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/de_DE/docs/user-guide/tiramisu/nand-backup.md b/translations/de_DE/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/de_DE/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/de_DE/docs/user-guide/tiramisu/sd-preparation.md b/translations/de_DE/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/de_DE/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/de_DE/docs/user-guide/tiramisu/sidebar.md b/translations/de_DE/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/de_DE/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/de_DE/docs/user-guide/vwii/browser-exploit.md b/translations/de_DE/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/de_DE/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/de_DE/docs/user-guide/vwii/finalizing-setup.md b/translations/de_DE/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/de_DE/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/de_DE/docs/user-guide/vwii/installing-cioses.md b/translations/de_DE/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/de_DE/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/de_DE/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/de_DE/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/de_DE/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/de_DE/docs/user-guide/vwii/nand-backup.md b/translations/de_DE/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/de_DE/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/de_DE/docs/user-guide/vwii/patching-ios80.md b/translations/de_DE/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/de_DE/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/de_DE/docs/user-guide/vwii/sd-preparation.md b/translations/de_DE/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/de_DE/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/de_DE/docs/user-guide/vwii/sidebar.md b/translations/de_DE/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/de_DE/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/de_DE/docs/user-guide/vwii/vwii-modding.md b/translations/de_DE/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/de_DE/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/de_DE/docs/vwii/vwii-modding.md b/translations/de_DE/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/de_DE/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/el_GR/docs/extras/about.md b/translations/el_GR/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/el_GR/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/el_GR/docs/extras/block-updates.md b/translations/el_GR/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/el_GR/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/el_GR/docs/extras/configurable-payload.md b/translations/el_GR/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/el_GR/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/el_GR/docs/extras/donations.md b/translations/el_GR/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/el_GR/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/el_GR/docs/extras/dump-games.md b/translations/el_GR/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/el_GR/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/el_GR/docs/extras/dump-wii-games.md b/translations/el_GR/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/el_GR/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/el_GR/docs/extras/faq.md b/translations/el_GR/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/el_GR/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/el_GR/docs/extras/find-wiiu-ip-address.md b/translations/el_GR/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/el_GR/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/el_GR/docs/extras/unblock-updates.md b/translations/el_GR/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/el_GR/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/el_GR/docs/extras/uninstall-cbhc.md b/translations/el_GR/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/el_GR/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/el_GR/docs/extras/uninstall-indexiine.md b/translations/el_GR/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/el_GR/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/el_GR/docs/extras/uninstall-payloadloader.md b/translations/el_GR/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/el_GR/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/el_GR/docs/privacy/privacy-policy.md b/translations/el_GR/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/el_GR/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/el_GR/docs/sidebar.md b/translations/el_GR/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/el_GR/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/el_GR/docs/troubleshooting/common-issues-fixes.md b/translations/el_GR/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/el_GR/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/el_GR/docs/troubleshooting/fix-errcode-112-1037.md b/translations/el_GR/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/el_GR/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/el_GR/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/el_GR/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/el_GR/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/el_GR/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/el_GR/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/el_GR/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/el_GR/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/el_GR/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/el_GR/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/el_GR/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/el_GR/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/el_GR/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/el_GR/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/cbhc/nand-backup.md b/translations/el_GR/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/el_GR/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/el_GR/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/el_GR/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/el_GR/docs/user-guide/archive/cbhc/sidebar.md b/translations/el_GR/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/el_GR/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/cfw-choice.md b/translations/el_GR/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/el_GR/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/el_GR/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/el_GR/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/el_GR/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/el_GR/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/el_GR/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/el_GR/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/el_GR/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/el_GR/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/el_GR/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/el_GR/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/haxchi/nand-backup.md b/translations/el_GR/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/el_GR/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/el_GR/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/el_GR/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/el_GR/docs/user-guide/archive/haxchi/sidebar.md b/translations/el_GR/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/el_GR/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/el_GR/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/el_GR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/el_GR/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/el_GR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/el_GR/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/el_GR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/el_GR/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/mocha/sidebar.md b/translations/el_GR/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/el_GR/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/sidebar.md b/translations/el_GR/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/el_GR/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/el_GR/docs/user-guide/archive/tiramisu/autoboot.md b/translations/el_GR/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/el_GR/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/el_GR/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/el_GR/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/el_GR/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/el_GR/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/el_GR/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/el_GR/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/el_GR/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/el_GR/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/el_GR/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/el_GR/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/el_GR/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/el_GR/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/el_GR/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/el_GR/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/el_GR/docs/user-guide/archive/tiramisu/sidebar.md b/translations/el_GR/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/el_GR/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/el_GR/docs/user-guide/archive/vwii/browser-exploit.md b/translations/el_GR/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/el_GR/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/el_GR/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/el_GR/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/el_GR/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/el_GR/docs/user-guide/archive/vwii/installing-cioses.md b/translations/el_GR/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/el_GR/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/el_GR/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/el_GR/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/el_GR/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/el_GR/docs/user-guide/archive/vwii/nand-backup.md b/translations/el_GR/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/el_GR/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/el_GR/docs/user-guide/archive/vwii/patching-ios80.md b/translations/el_GR/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/el_GR/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/el_GR/docs/user-guide/archive/vwii/sd-preparation.md b/translations/el_GR/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/el_GR/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/el_GR/docs/user-guide/archive/vwii/sidebar.md b/translations/el_GR/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/el_GR/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/el_GR/docs/user-guide/aroma/autoboot.md b/translations/el_GR/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/el_GR/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/el_GR/docs/user-guide/aroma/browser-exploit.md b/translations/el_GR/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/el_GR/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/el_GR/docs/user-guide/aroma/finalizing-setup.md b/translations/el_GR/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/el_GR/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/el_GR/docs/user-guide/aroma/getting-started.md b/translations/el_GR/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/el_GR/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/el_GR/docs/user-guide/aroma/installing-payloadloader.md b/translations/el_GR/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/el_GR/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/el_GR/docs/user-guide/aroma/nand-backup.md b/translations/el_GR/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/el_GR/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/el_GR/docs/user-guide/aroma/sd-preparation.md b/translations/el_GR/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/el_GR/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/el_GR/docs/user-guide/aroma/sidebar.md b/translations/el_GR/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/el_GR/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/el_GR/docs/user-guide/cbhc/browser-exploit.md b/translations/el_GR/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/el_GR/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/cbhc/ds-vc-choice.md b/translations/el_GR/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/el_GR/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/el_GR/docs/user-guide/cbhc/installing-hblc.md b/translations/el_GR/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/el_GR/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/cbhc/launching-cfw.md b/translations/el_GR/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/el_GR/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/cbhc/nand-backup.md b/translations/el_GR/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/el_GR/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/cbhc/sd-preparation.md b/translations/el_GR/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/el_GR/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/el_GR/docs/user-guide/cbhc/sidebar.md b/translations/el_GR/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/el_GR/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/cfw-choice.md b/translations/el_GR/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/el_GR/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/el_GR/docs/user-guide/haxchi/browser-exploit.md b/translations/el_GR/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/el_GR/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/haxchi/ds-vc-choice.md b/translations/el_GR/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/el_GR/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/el_GR/docs/user-guide/haxchi/installing-hblc.md b/translations/el_GR/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/el_GR/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/haxchi/launching-cfw.md b/translations/el_GR/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/el_GR/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/haxchi/nand-backup.md b/translations/el_GR/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/el_GR/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/haxchi/sd-preparation.md b/translations/el_GR/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/el_GR/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/el_GR/docs/user-guide/haxchi/sidebar.md b/translations/el_GR/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/el_GR/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/introduction.md b/translations/el_GR/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/el_GR/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/el_GR/docs/user-guide/mocha/entrypoint-choice.md b/translations/el_GR/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/el_GR/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/el_GR/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/el_GR/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/el_GR/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/el_GR/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/el_GR/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/el_GR/docs/user-guide/mocha/indexiine/sidebar.md b/translations/el_GR/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/el_GR/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/el_GR/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/el_GR/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/el_GR/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/el_GR/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/el_GR/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/mocha/sidebar.md b/translations/el_GR/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/el_GR/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/tiramisu/autoboot.md b/translations/el_GR/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/el_GR/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/el_GR/docs/user-guide/tiramisu/browser-exploit.md b/translations/el_GR/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/el_GR/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/el_GR/docs/user-guide/tiramisu/finalizing-setup.md b/translations/el_GR/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/el_GR/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/el_GR/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/el_GR/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/el_GR/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/el_GR/docs/user-guide/tiramisu/nand-backup.md b/translations/el_GR/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/el_GR/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/el_GR/docs/user-guide/tiramisu/sd-preparation.md b/translations/el_GR/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/el_GR/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/el_GR/docs/user-guide/tiramisu/sidebar.md b/translations/el_GR/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/el_GR/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/el_GR/docs/user-guide/vwii/browser-exploit.md b/translations/el_GR/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/el_GR/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/el_GR/docs/user-guide/vwii/finalizing-setup.md b/translations/el_GR/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/el_GR/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/el_GR/docs/user-guide/vwii/installing-cioses.md b/translations/el_GR/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/el_GR/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/el_GR/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/el_GR/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/el_GR/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/el_GR/docs/user-guide/vwii/nand-backup.md b/translations/el_GR/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/el_GR/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/el_GR/docs/user-guide/vwii/patching-ios80.md b/translations/el_GR/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/el_GR/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/el_GR/docs/user-guide/vwii/sd-preparation.md b/translations/el_GR/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/el_GR/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/el_GR/docs/user-guide/vwii/sidebar.md b/translations/el_GR/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/el_GR/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/el_GR/docs/user-guide/vwii/vwii-modding.md b/translations/el_GR/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/el_GR/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/el_GR/docs/vwii/vwii-modding.md b/translations/el_GR/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/el_GR/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/es_ES/docs/extras/about.md b/translations/es_ES/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/es_ES/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/es_ES/docs/extras/block-updates.md b/translations/es_ES/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/es_ES/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/es_ES/docs/extras/configurable-payload.md b/translations/es_ES/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/es_ES/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/es_ES/docs/extras/donations.md b/translations/es_ES/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/es_ES/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/es_ES/docs/extras/dump-games.md b/translations/es_ES/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/es_ES/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/es_ES/docs/extras/dump-wii-games.md b/translations/es_ES/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/es_ES/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/es_ES/docs/extras/faq.md b/translations/es_ES/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/es_ES/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/es_ES/docs/extras/find-wiiu-ip-address.md b/translations/es_ES/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/es_ES/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/es_ES/docs/extras/unblock-updates.md b/translations/es_ES/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/es_ES/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/es_ES/docs/extras/uninstall-cbhc.md b/translations/es_ES/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/es_ES/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/es_ES/docs/extras/uninstall-indexiine.md b/translations/es_ES/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/es_ES/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/es_ES/docs/extras/uninstall-payloadloader.md b/translations/es_ES/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/es_ES/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/es_ES/docs/privacy/privacy-policy.md b/translations/es_ES/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/es_ES/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/es_ES/docs/sidebar.md b/translations/es_ES/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/es_ES/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/es_ES/docs/troubleshooting/common-issues-fixes.md b/translations/es_ES/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/es_ES/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/es_ES/docs/troubleshooting/fix-errcode-112-1037.md b/translations/es_ES/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/es_ES/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/es_ES/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/es_ES/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/es_ES/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/es_ES/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/es_ES/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/es_ES/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/es_ES/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/es_ES/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/es_ES/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/es_ES/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/es_ES/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/es_ES/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/es_ES/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/cbhc/nand-backup.md b/translations/es_ES/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/es_ES/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/es_ES/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/es_ES/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/es_ES/docs/user-guide/archive/cbhc/sidebar.md b/translations/es_ES/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/es_ES/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/cfw-choice.md b/translations/es_ES/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/es_ES/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/es_ES/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/es_ES/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/es_ES/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/es_ES/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/es_ES/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/es_ES/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/es_ES/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/es_ES/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/es_ES/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/es_ES/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/haxchi/nand-backup.md b/translations/es_ES/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/es_ES/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/es_ES/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/es_ES/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/es_ES/docs/user-guide/archive/haxchi/sidebar.md b/translations/es_ES/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/es_ES/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/es_ES/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/es_ES/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/es_ES/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/es_ES/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/es_ES/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/es_ES/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/es_ES/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/mocha/sidebar.md b/translations/es_ES/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/es_ES/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/sidebar.md b/translations/es_ES/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/es_ES/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/es_ES/docs/user-guide/archive/tiramisu/autoboot.md b/translations/es_ES/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/es_ES/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/es_ES/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/es_ES/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/es_ES/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/es_ES/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/es_ES/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/es_ES/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/es_ES/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/es_ES/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/es_ES/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/es_ES/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/es_ES/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/es_ES/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/es_ES/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/es_ES/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/es_ES/docs/user-guide/archive/tiramisu/sidebar.md b/translations/es_ES/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/es_ES/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/es_ES/docs/user-guide/archive/vwii/browser-exploit.md b/translations/es_ES/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/es_ES/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/es_ES/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/es_ES/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/es_ES/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/es_ES/docs/user-guide/archive/vwii/installing-cioses.md b/translations/es_ES/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/es_ES/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/es_ES/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/es_ES/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/es_ES/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/es_ES/docs/user-guide/archive/vwii/nand-backup.md b/translations/es_ES/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/es_ES/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/es_ES/docs/user-guide/archive/vwii/patching-ios80.md b/translations/es_ES/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/es_ES/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/es_ES/docs/user-guide/archive/vwii/sd-preparation.md b/translations/es_ES/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/es_ES/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/es_ES/docs/user-guide/archive/vwii/sidebar.md b/translations/es_ES/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/es_ES/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/es_ES/docs/user-guide/aroma/autoboot.md b/translations/es_ES/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/es_ES/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/es_ES/docs/user-guide/aroma/browser-exploit.md b/translations/es_ES/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/es_ES/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/es_ES/docs/user-guide/aroma/finalizing-setup.md b/translations/es_ES/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/es_ES/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/es_ES/docs/user-guide/aroma/getting-started.md b/translations/es_ES/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/es_ES/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/es_ES/docs/user-guide/aroma/installing-payloadloader.md b/translations/es_ES/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/es_ES/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/es_ES/docs/user-guide/aroma/nand-backup.md b/translations/es_ES/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/es_ES/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/es_ES/docs/user-guide/aroma/sd-preparation.md b/translations/es_ES/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/es_ES/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/es_ES/docs/user-guide/aroma/sidebar.md b/translations/es_ES/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/es_ES/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/es_ES/docs/user-guide/cbhc/browser-exploit.md b/translations/es_ES/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/es_ES/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/cbhc/ds-vc-choice.md b/translations/es_ES/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/es_ES/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/es_ES/docs/user-guide/cbhc/installing-hblc.md b/translations/es_ES/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/es_ES/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/cbhc/launching-cfw.md b/translations/es_ES/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/es_ES/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/cbhc/nand-backup.md b/translations/es_ES/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/es_ES/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/cbhc/sd-preparation.md b/translations/es_ES/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/es_ES/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/es_ES/docs/user-guide/cbhc/sidebar.md b/translations/es_ES/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/es_ES/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/cfw-choice.md b/translations/es_ES/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/es_ES/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/es_ES/docs/user-guide/haxchi/browser-exploit.md b/translations/es_ES/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/es_ES/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/haxchi/ds-vc-choice.md b/translations/es_ES/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/es_ES/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/es_ES/docs/user-guide/haxchi/installing-hblc.md b/translations/es_ES/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/es_ES/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/haxchi/launching-cfw.md b/translations/es_ES/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/es_ES/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/haxchi/nand-backup.md b/translations/es_ES/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/es_ES/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/haxchi/sd-preparation.md b/translations/es_ES/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/es_ES/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/es_ES/docs/user-guide/haxchi/sidebar.md b/translations/es_ES/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/es_ES/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/introduction.md b/translations/es_ES/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/es_ES/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/es_ES/docs/user-guide/mocha/entrypoint-choice.md b/translations/es_ES/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/es_ES/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/es_ES/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/es_ES/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/es_ES/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/es_ES/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/es_ES/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/es_ES/docs/user-guide/mocha/indexiine/sidebar.md b/translations/es_ES/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/es_ES/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/es_ES/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/es_ES/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/es_ES/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/es_ES/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/es_ES/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/mocha/sidebar.md b/translations/es_ES/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/es_ES/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/tiramisu/autoboot.md b/translations/es_ES/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/es_ES/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/es_ES/docs/user-guide/tiramisu/browser-exploit.md b/translations/es_ES/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/es_ES/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/es_ES/docs/user-guide/tiramisu/finalizing-setup.md b/translations/es_ES/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/es_ES/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/es_ES/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/es_ES/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/es_ES/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/es_ES/docs/user-guide/tiramisu/nand-backup.md b/translations/es_ES/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/es_ES/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/es_ES/docs/user-guide/tiramisu/sd-preparation.md b/translations/es_ES/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/es_ES/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/es_ES/docs/user-guide/tiramisu/sidebar.md b/translations/es_ES/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/es_ES/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/es_ES/docs/user-guide/vwii/browser-exploit.md b/translations/es_ES/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/es_ES/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/es_ES/docs/user-guide/vwii/finalizing-setup.md b/translations/es_ES/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/es_ES/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/es_ES/docs/user-guide/vwii/installing-cioses.md b/translations/es_ES/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/es_ES/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/es_ES/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/es_ES/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/es_ES/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/es_ES/docs/user-guide/vwii/nand-backup.md b/translations/es_ES/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/es_ES/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/es_ES/docs/user-guide/vwii/patching-ios80.md b/translations/es_ES/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/es_ES/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/es_ES/docs/user-guide/vwii/sd-preparation.md b/translations/es_ES/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/es_ES/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/es_ES/docs/user-guide/vwii/sidebar.md b/translations/es_ES/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/es_ES/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/es_ES/docs/user-guide/vwii/vwii-modding.md b/translations/es_ES/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/es_ES/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/es_ES/docs/vwii/vwii-modding.md b/translations/es_ES/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/es_ES/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/et_EE/docs/extras/about.md b/translations/et_EE/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/et_EE/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/et_EE/docs/extras/block-updates.md b/translations/et_EE/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/et_EE/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/et_EE/docs/extras/configurable-payload.md b/translations/et_EE/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/et_EE/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/et_EE/docs/extras/donations.md b/translations/et_EE/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/et_EE/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/et_EE/docs/extras/dump-games.md b/translations/et_EE/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/et_EE/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/et_EE/docs/extras/dump-wii-games.md b/translations/et_EE/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/et_EE/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/et_EE/docs/extras/faq.md b/translations/et_EE/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/et_EE/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/et_EE/docs/extras/find-wiiu-ip-address.md b/translations/et_EE/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/et_EE/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/et_EE/docs/extras/unblock-updates.md b/translations/et_EE/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/et_EE/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/et_EE/docs/extras/uninstall-cbhc.md b/translations/et_EE/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/et_EE/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/et_EE/docs/extras/uninstall-indexiine.md b/translations/et_EE/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/et_EE/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/et_EE/docs/extras/uninstall-payloadloader.md b/translations/et_EE/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/et_EE/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/et_EE/docs/privacy/privacy-policy.md b/translations/et_EE/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/et_EE/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/et_EE/docs/sidebar.md b/translations/et_EE/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/et_EE/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/et_EE/docs/troubleshooting/common-issues-fixes.md b/translations/et_EE/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/et_EE/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/et_EE/docs/troubleshooting/fix-errcode-112-1037.md b/translations/et_EE/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/et_EE/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/et_EE/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/et_EE/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/et_EE/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/et_EE/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/et_EE/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/et_EE/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/et_EE/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/et_EE/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/et_EE/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/et_EE/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/et_EE/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/et_EE/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/et_EE/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/cbhc/nand-backup.md b/translations/et_EE/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/et_EE/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/et_EE/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/et_EE/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/et_EE/docs/user-guide/archive/cbhc/sidebar.md b/translations/et_EE/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/et_EE/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/cfw-choice.md b/translations/et_EE/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/et_EE/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/et_EE/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/et_EE/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/et_EE/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/et_EE/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/et_EE/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/et_EE/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/et_EE/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/et_EE/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/et_EE/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/et_EE/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/haxchi/nand-backup.md b/translations/et_EE/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/et_EE/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/et_EE/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/et_EE/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/et_EE/docs/user-guide/archive/haxchi/sidebar.md b/translations/et_EE/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/et_EE/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/et_EE/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/et_EE/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/et_EE/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/et_EE/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/et_EE/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/et_EE/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/et_EE/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/mocha/sidebar.md b/translations/et_EE/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/et_EE/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/sidebar.md b/translations/et_EE/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/et_EE/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/et_EE/docs/user-guide/archive/tiramisu/autoboot.md b/translations/et_EE/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/et_EE/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/et_EE/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/et_EE/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/et_EE/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/et_EE/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/et_EE/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/et_EE/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/et_EE/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/et_EE/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/et_EE/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/et_EE/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/et_EE/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/et_EE/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/et_EE/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/et_EE/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/et_EE/docs/user-guide/archive/tiramisu/sidebar.md b/translations/et_EE/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/et_EE/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/et_EE/docs/user-guide/archive/vwii/browser-exploit.md b/translations/et_EE/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/et_EE/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/et_EE/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/et_EE/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/et_EE/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/et_EE/docs/user-guide/archive/vwii/installing-cioses.md b/translations/et_EE/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/et_EE/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/et_EE/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/et_EE/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/et_EE/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/et_EE/docs/user-guide/archive/vwii/nand-backup.md b/translations/et_EE/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/et_EE/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/et_EE/docs/user-guide/archive/vwii/patching-ios80.md b/translations/et_EE/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/et_EE/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/et_EE/docs/user-guide/archive/vwii/sd-preparation.md b/translations/et_EE/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/et_EE/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/et_EE/docs/user-guide/archive/vwii/sidebar.md b/translations/et_EE/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/et_EE/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/et_EE/docs/user-guide/aroma/autoboot.md b/translations/et_EE/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/et_EE/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/et_EE/docs/user-guide/aroma/browser-exploit.md b/translations/et_EE/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/et_EE/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/et_EE/docs/user-guide/aroma/finalizing-setup.md b/translations/et_EE/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/et_EE/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/et_EE/docs/user-guide/aroma/getting-started.md b/translations/et_EE/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/et_EE/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/et_EE/docs/user-guide/aroma/installing-payloadloader.md b/translations/et_EE/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/et_EE/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/et_EE/docs/user-guide/aroma/nand-backup.md b/translations/et_EE/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/et_EE/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/et_EE/docs/user-guide/aroma/sd-preparation.md b/translations/et_EE/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/et_EE/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/et_EE/docs/user-guide/aroma/sidebar.md b/translations/et_EE/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/et_EE/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/et_EE/docs/user-guide/cbhc/browser-exploit.md b/translations/et_EE/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/et_EE/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/cbhc/ds-vc-choice.md b/translations/et_EE/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/et_EE/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/et_EE/docs/user-guide/cbhc/installing-hblc.md b/translations/et_EE/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/et_EE/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/cbhc/launching-cfw.md b/translations/et_EE/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/et_EE/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/cbhc/nand-backup.md b/translations/et_EE/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/et_EE/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/cbhc/sd-preparation.md b/translations/et_EE/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/et_EE/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/et_EE/docs/user-guide/cbhc/sidebar.md b/translations/et_EE/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/et_EE/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/cfw-choice.md b/translations/et_EE/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/et_EE/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/et_EE/docs/user-guide/haxchi/browser-exploit.md b/translations/et_EE/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/et_EE/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/haxchi/ds-vc-choice.md b/translations/et_EE/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/et_EE/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/et_EE/docs/user-guide/haxchi/installing-hblc.md b/translations/et_EE/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/et_EE/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/haxchi/launching-cfw.md b/translations/et_EE/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/et_EE/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/haxchi/nand-backup.md b/translations/et_EE/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/et_EE/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/haxchi/sd-preparation.md b/translations/et_EE/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/et_EE/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/et_EE/docs/user-guide/haxchi/sidebar.md b/translations/et_EE/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/et_EE/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/introduction.md b/translations/et_EE/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/et_EE/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/et_EE/docs/user-guide/mocha/entrypoint-choice.md b/translations/et_EE/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/et_EE/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/et_EE/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/et_EE/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/et_EE/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/et_EE/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/et_EE/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/et_EE/docs/user-guide/mocha/indexiine/sidebar.md b/translations/et_EE/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/et_EE/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/et_EE/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/et_EE/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/et_EE/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/et_EE/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/et_EE/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/mocha/sidebar.md b/translations/et_EE/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/et_EE/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/tiramisu/autoboot.md b/translations/et_EE/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/et_EE/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/et_EE/docs/user-guide/tiramisu/browser-exploit.md b/translations/et_EE/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/et_EE/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/et_EE/docs/user-guide/tiramisu/finalizing-setup.md b/translations/et_EE/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/et_EE/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/et_EE/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/et_EE/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/et_EE/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/et_EE/docs/user-guide/tiramisu/nand-backup.md b/translations/et_EE/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/et_EE/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/et_EE/docs/user-guide/tiramisu/sd-preparation.md b/translations/et_EE/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/et_EE/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/et_EE/docs/user-guide/tiramisu/sidebar.md b/translations/et_EE/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/et_EE/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/et_EE/docs/user-guide/vwii/browser-exploit.md b/translations/et_EE/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/et_EE/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/et_EE/docs/user-guide/vwii/finalizing-setup.md b/translations/et_EE/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/et_EE/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/et_EE/docs/user-guide/vwii/installing-cioses.md b/translations/et_EE/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/et_EE/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/et_EE/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/et_EE/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/et_EE/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/et_EE/docs/user-guide/vwii/nand-backup.md b/translations/et_EE/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/et_EE/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/et_EE/docs/user-guide/vwii/patching-ios80.md b/translations/et_EE/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/et_EE/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/et_EE/docs/user-guide/vwii/sd-preparation.md b/translations/et_EE/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/et_EE/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/et_EE/docs/user-guide/vwii/sidebar.md b/translations/et_EE/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/et_EE/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/et_EE/docs/user-guide/vwii/vwii-modding.md b/translations/et_EE/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/et_EE/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/et_EE/docs/vwii/vwii-modding.md b/translations/et_EE/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/et_EE/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/fi_FI/docs/extras/about.md b/translations/fi_FI/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/fi_FI/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/fi_FI/docs/extras/block-updates.md b/translations/fi_FI/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/fi_FI/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/fi_FI/docs/extras/configurable-payload.md b/translations/fi_FI/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/fi_FI/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/fi_FI/docs/extras/donations.md b/translations/fi_FI/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/fi_FI/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/fi_FI/docs/extras/dump-games.md b/translations/fi_FI/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/fi_FI/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/fi_FI/docs/extras/dump-wii-games.md b/translations/fi_FI/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/fi_FI/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/fi_FI/docs/extras/faq.md b/translations/fi_FI/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/fi_FI/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/fi_FI/docs/extras/find-wiiu-ip-address.md b/translations/fi_FI/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/fi_FI/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/fi_FI/docs/extras/unblock-updates.md b/translations/fi_FI/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/fi_FI/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/fi_FI/docs/extras/uninstall-cbhc.md b/translations/fi_FI/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/fi_FI/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/fi_FI/docs/extras/uninstall-indexiine.md b/translations/fi_FI/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/fi_FI/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/fi_FI/docs/extras/uninstall-payloadloader.md b/translations/fi_FI/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/fi_FI/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/fi_FI/docs/privacy/privacy-policy.md b/translations/fi_FI/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/fi_FI/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/fi_FI/docs/sidebar.md b/translations/fi_FI/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/fi_FI/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/fi_FI/docs/troubleshooting/common-issues-fixes.md b/translations/fi_FI/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/fi_FI/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/fi_FI/docs/troubleshooting/fix-errcode-112-1037.md b/translations/fi_FI/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/fi_FI/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/fi_FI/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/fi_FI/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/fi_FI/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/fi_FI/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/fi_FI/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/fi_FI/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/fi_FI/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/fi_FI/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/fi_FI/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/cbhc/nand-backup.md b/translations/fi_FI/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/fi_FI/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fi_FI/docs/user-guide/archive/cbhc/sidebar.md b/translations/fi_FI/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/cfw-choice.md b/translations/fi_FI/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/fi_FI/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/fi_FI/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/fi_FI/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/fi_FI/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/fi_FI/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/fi_FI/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/haxchi/nand-backup.md b/translations/fi_FI/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/fi_FI/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fi_FI/docs/user-guide/archive/haxchi/sidebar.md b/translations/fi_FI/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/fi_FI/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/mocha/sidebar.md b/translations/fi_FI/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/sidebar.md b/translations/fi_FI/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/fi_FI/docs/user-guide/archive/tiramisu/autoboot.md b/translations/fi_FI/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/fi_FI/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/fi_FI/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/fi_FI/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/fi_FI/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/fi_FI/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/fi_FI/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/fi_FI/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/fi_FI/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/fi_FI/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/fi_FI/docs/user-guide/archive/tiramisu/sidebar.md b/translations/fi_FI/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/fi_FI/docs/user-guide/archive/vwii/browser-exploit.md b/translations/fi_FI/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/fi_FI/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/fi_FI/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/fi_FI/docs/user-guide/archive/vwii/installing-cioses.md b/translations/fi_FI/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/fi_FI/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/fi_FI/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/fi_FI/docs/user-guide/archive/vwii/nand-backup.md b/translations/fi_FI/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/fi_FI/docs/user-guide/archive/vwii/patching-ios80.md b/translations/fi_FI/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/fi_FI/docs/user-guide/archive/vwii/sd-preparation.md b/translations/fi_FI/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/fi_FI/docs/user-guide/archive/vwii/sidebar.md b/translations/fi_FI/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/fi_FI/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/fi_FI/docs/user-guide/aroma/autoboot.md b/translations/fi_FI/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/fi_FI/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/fi_FI/docs/user-guide/aroma/browser-exploit.md b/translations/fi_FI/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/fi_FI/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/fi_FI/docs/user-guide/aroma/finalizing-setup.md b/translations/fi_FI/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/fi_FI/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/fi_FI/docs/user-guide/aroma/getting-started.md b/translations/fi_FI/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/fi_FI/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/fi_FI/docs/user-guide/aroma/installing-payloadloader.md b/translations/fi_FI/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/fi_FI/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/fi_FI/docs/user-guide/aroma/nand-backup.md b/translations/fi_FI/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/fi_FI/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/fi_FI/docs/user-guide/aroma/sd-preparation.md b/translations/fi_FI/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/fi_FI/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/fi_FI/docs/user-guide/aroma/sidebar.md b/translations/fi_FI/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/fi_FI/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/fi_FI/docs/user-guide/cbhc/browser-exploit.md b/translations/fi_FI/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/fi_FI/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/cbhc/ds-vc-choice.md b/translations/fi_FI/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/fi_FI/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/fi_FI/docs/user-guide/cbhc/installing-hblc.md b/translations/fi_FI/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/fi_FI/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/cbhc/launching-cfw.md b/translations/fi_FI/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/fi_FI/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/cbhc/nand-backup.md b/translations/fi_FI/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/fi_FI/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/cbhc/sd-preparation.md b/translations/fi_FI/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/fi_FI/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fi_FI/docs/user-guide/cbhc/sidebar.md b/translations/fi_FI/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/fi_FI/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/cfw-choice.md b/translations/fi_FI/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/fi_FI/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/fi_FI/docs/user-guide/haxchi/browser-exploit.md b/translations/fi_FI/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/fi_FI/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/haxchi/ds-vc-choice.md b/translations/fi_FI/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/fi_FI/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/fi_FI/docs/user-guide/haxchi/installing-hblc.md b/translations/fi_FI/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/fi_FI/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/haxchi/launching-cfw.md b/translations/fi_FI/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/fi_FI/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/haxchi/nand-backup.md b/translations/fi_FI/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/fi_FI/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/haxchi/sd-preparation.md b/translations/fi_FI/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/fi_FI/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fi_FI/docs/user-guide/haxchi/sidebar.md b/translations/fi_FI/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/fi_FI/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/introduction.md b/translations/fi_FI/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/fi_FI/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/fi_FI/docs/user-guide/mocha/entrypoint-choice.md b/translations/fi_FI/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/fi_FI/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/fi_FI/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/fi_FI/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/fi_FI/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/fi_FI/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/fi_FI/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fi_FI/docs/user-guide/mocha/indexiine/sidebar.md b/translations/fi_FI/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/fi_FI/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/fi_FI/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/fi_FI/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/fi_FI/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fi_FI/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/fi_FI/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/mocha/sidebar.md b/translations/fi_FI/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/fi_FI/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/tiramisu/autoboot.md b/translations/fi_FI/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/fi_FI/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/fi_FI/docs/user-guide/tiramisu/browser-exploit.md b/translations/fi_FI/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/fi_FI/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/fi_FI/docs/user-guide/tiramisu/finalizing-setup.md b/translations/fi_FI/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/fi_FI/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/fi_FI/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/fi_FI/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/fi_FI/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/fi_FI/docs/user-guide/tiramisu/nand-backup.md b/translations/fi_FI/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/fi_FI/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/fi_FI/docs/user-guide/tiramisu/sd-preparation.md b/translations/fi_FI/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/fi_FI/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/fi_FI/docs/user-guide/tiramisu/sidebar.md b/translations/fi_FI/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/fi_FI/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/fi_FI/docs/user-guide/vwii/browser-exploit.md b/translations/fi_FI/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/fi_FI/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/fi_FI/docs/user-guide/vwii/finalizing-setup.md b/translations/fi_FI/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/fi_FI/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/fi_FI/docs/user-guide/vwii/installing-cioses.md b/translations/fi_FI/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/fi_FI/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/fi_FI/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/fi_FI/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/fi_FI/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/fi_FI/docs/user-guide/vwii/nand-backup.md b/translations/fi_FI/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/fi_FI/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/fi_FI/docs/user-guide/vwii/patching-ios80.md b/translations/fi_FI/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/fi_FI/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/fi_FI/docs/user-guide/vwii/sd-preparation.md b/translations/fi_FI/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/fi_FI/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/fi_FI/docs/user-guide/vwii/sidebar.md b/translations/fi_FI/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/fi_FI/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/fi_FI/docs/user-guide/vwii/vwii-modding.md b/translations/fi_FI/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/fi_FI/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/fi_FI/docs/vwii/vwii-modding.md b/translations/fi_FI/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/fi_FI/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/fr_FR/docs/extras/about.md b/translations/fr_FR/docs/extras/about.md deleted file mode 100644 index 28a0400f17e..00000000000 --- a/translations/fr_FR/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# À propos de ce guide ---- -Ce guide a été rédigé par des membres du personnel du [Serveur Discord Nintendo Homebrew](https://discord.gg/C29hYvh) - -> **Crédits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Merci à [tous ceux](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) qui ont apporté leur contribution au guide sur GitHub. - -?> [Vous pouvez trouver ce guide sur GitHub](https://github.com/hacks-guide/Guide-WiiU), Il est sous licence [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Remerciements** -> -> - **GaryOderNichts** et **Maschell** pour l'[AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** et **FIX94** pour d2x cIOS Installer. -> -> - **koolkdev** et **FIX94** pour [disc2app](https://github.com/koolkdev/disc2app). -> -> - L'**équipe de Docsify** pour [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** pour [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** et **smealum** pour [Haxchi et CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** pour le [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), le [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), et [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** et **dimok789** pour le [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** pour [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** et **orboditilt** pour [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** et **FIX94** pour Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** et **brienj** pour [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** pour [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** et **Maschell** pour le [payload de Wii U NAND Dumper](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** pour [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** pour [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/fr_FR/docs/extras/block-updates.md b/translations/fr_FR/docs/extras/block-updates.md deleted file mode 100644 index c4812c3549b..00000000000 --- a/translations/fr_FR/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocage des mises à jour ---- -Tous les exploits actuellement connus de la Wii U peuvent, contrairement par exemple à l'exploit du Nintendo Switch RCM, être corrigés par une mise à jour du système. Bien que la Wii U ne soit plus officiellement prise en charge, Nintendo peut toujours publier des mises à jour pour celle-ci. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/fr_FR/docs/extras/configurable-payload.md b/translations/fr_FR/docs/extras/configurable-payload.md deleted file mode 100644 index 53e824c0464..00000000000 --- a/translations/fr_FR/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Payload configurable ---- -Ce payload est configurable, ce qui est similaire à la configuration d'Haxchi. Cela pourrait être très utile pour les utilisateurs de Mocha, car cela permet d'économiser un peu de temps et de ne plus avoir à lancer Mocha via l'Homebrew Launcher. - -### Ce dont vous avez besoin {docsify-ignore} - -- Le payload configurable. -- La dernière version de [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Copiez le contenu du fichier `homebrew_launcher_channel.v2.1_fix.zip` dans le dossier `install` à la racine de votre carte SD. -1. Insérez la carte SD dans votre Wii U et lancez l'[Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Naviguez dans l'Homebrew Launcher et lancez l'application WUP Installer GX2. -1. Sélectionnez `Homebrew Launcher Channel`. Appuyez sur `Install` et choisissez NAND comme destination de l'installation. Ceci installera l'Homebrew Launcher Channel sur le Menu Wii U. -1. Une fois le processus terminé, appuyez sur le bouton HOME jusqu'à ce que vous reveniez sur le Menu Wii U. -1. À ce stade, la chaîne ne se lancera pas car elle entrera en conflit avec la version exécutée depuis la carte SD que vous utilisiez. Redémarrez la Wii U. -1. Éjectez la carte SD de votre Wii U et insérez-la dans votre ordinateur. -1. Copiez le contenu du fichier `Configurable_Payload.zip` vers la racine de votre carte SD. Si demandé, écrasez les fichiers déjà présents sur votre carte SD. -1. Insérez la carte SD dans votre Wii U et lancez le Navigateur Internet puis accédez au site Internet `wiiuexploit.xyz`. -1. Cliquez sur `Run Homebrew Launcher!`. Si tout a été fait correctement, vous devriez être ramené vers le Menu Wii U. Mocha a maintenant été activé et vous pouvez utiliser le Homebrew Launcher Channel que vous avez installé précédemment. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. diff --git a/translations/fr_FR/docs/extras/donations.md b/translations/fr_FR/docs/extras/donations.md deleted file mode 100644 index 726b31a7aa0..00000000000 --- a/translations/fr_FR/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Dons {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/fr_FR/docs/extras/dump-games.md b/translations/fr_FR/docs/extras/dump-games.md deleted file mode 100644 index 1cd61213a52..00000000000 --- a/translations/fr_FR/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumper vos Disques Wii U ---- -Dumper vos disques vous permet d'installer une copie de votre jeu sur la NAND / un périphérique USB afin que vous puissiez y jouer sans avoir besoin du disque. - -?> Le dumping et l'installation de jeux nécessitent une installation Homebrew fonctionnelle, donc assurez-vous de terminer le guide principal sur l'installation de CFW avant de le suivre. - -!> Il est **ILLÉGAL** de partager les fichiers dumpés à l'aide de ce guide. -Si vous avez l'intention d'utiliser ce guide pour ensuite partager vos jeux dumpés, ne le faites pas. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installer un jeu dans la mémoire interne de la console (NAND) n'est pas recommandé car elle est limitée à 8 Go ou 32 Go selon le modèle de votre console, ce qui vous ferait manquer d'espace assez rapidement si vous souhaitez installer plusieurs jeux. - -?> Lors de l'installation d'un jeu sur un périphérique USB, nous vous recommandons d'utiliser un disque dur plutôt qu'un périphérique à mémoire flash (comme par exemple, une clé USB), car ils ne sont pas optimisés pour la lecture et l'écriture constantes, ce qui les uses rapidement. Si votre disque dur n'est pas alimenté par une source externe, vous aurez besoin d'un câble en Y pour le connecter à deux ports USB sur la Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### Ce dont vous avez besoin {docsify-ignore} - -- Votre carte SD a besoin de suffisamment d'espace pour stocker le jeu que vous voulez dumper. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Allumez votre Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/fr_FR/docs/extras/dump-wii-games.md b/translations/fr_FR/docs/extras/dump-wii-games.md deleted file mode 100644 index a217cc27f16..00000000000 --- a/translations/fr_FR/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumper vos Disques Wii ---- -Dumper vos diques vous permet de : les lire sur un émulateur Wii (à savoir Dolphin), les lire en utilisant un lanceur supportant les cartes SD et appareils USB tel que Wiiflow, faire des injections Console Virtuelle qui peuvent être installées sur une clé USB formatée par la Wii U ou sur la NAND et lancées depuis le menu Wii U. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> Il est **ILLÉGAL** de partager les fichiers dumpés à l'aide de ce guide. -Si vous avez l'intention d'utiliser ce guide pour ensuite partager vos jeux dumpés, ne le faites pas. - -### Ce dont vous avez besoin {docsify-ignore} - -1. La dernière version de [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. Le fichier [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat). - -### Instructions {docsify-ignore} - -1. Insérez la carte SD de votre Wii U dans votre ordinateur. -1. Copiez le dossier `apps` du fichier `CleanRip-v2.1.1.zip` à la racine de votre carte SD. -1. Copiez le fichier `wii.dat` vers la racine de votre carte SD. -1. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. - -### Dumping du disque - -1. Allumez votre Wii U puis choisissez l'icône Menu Wii pour démarrer dans la vWii. -1. Lancez la Chaîne Homebrew. -1. Lancez CleanRip. -1. Lisez la clause de non-responsabilité puis appuyez sur A. -1. Sélectionnez Yes pour activer les calculs de la somme de contrôle. -1. Sélectionnez USB ou Front SD selon le périphérique que vous souhaitez utiliser pour le processus de dumping. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Appuyez sur A pour continuer. -1. Sélectionnez No sur l'écran qui vous demande de télécharger les fichiers DAT de redump.org. -1. Insérez votre disque puis appuyez sur A. -1. Allez [sur cette page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) pour voir si votre disque est à double couche. -1. Faites en sorte que ce qui suit soit identique à ce qui est affiché sur votre console : - - Dual Layer: `Yes/No` (Sélectionnez `Yes` si votre disque de jeu est de type double couche) - - Chunk Size: `Max` - - New device per chunk: `No` -1. Si vous souhaitez dumper plusieurs disques, sélectionnez Oui pour mémoriser vos paramètres. Si ce n'est pas le cas, sélectionnez Non. - -?> Préparez-vous à attendre un moment. Le processus de dumping peut prendre de 30 minutes à 1 heure selon la vitesse de votre carte SD. - -### Fusionner les fichiers scindés - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. Il faut les fusionner. - -#### Windows {docsify-ignore} - -1. Copiez tous les fichiers qui portent le même nom et qui se terminent par `.partX.iso` dans un dossier de votre ordinateur. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copiez tous les fichiers qui portent le même nom et qui se terminent par `.partX.iso` dans un dossier de votre ordinateur. -1. Ouvrez un Terminal. -1. Utilisez la commande `cd ` et remplacez `` par le chemin d'accès à vos fichiers `.partX.iso`. -1. Utilisez la commande suivante comme telle : `cat *.part?.iso > game.iso`. diff --git a/translations/fr_FR/docs/extras/faq.md b/translations/fr_FR/docs/extras/faq.md deleted file mode 100644 index d178526a245..00000000000 --- a/translations/fr_FR/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Foire Aux Questions {docsify-ignore-all} ---- - -### L'homebrew comporte-t-il des risques ? - -Actuellement, le homebrewing de la Wii U ne vous expose pas à un risque de bannissement par Nintendo, à moins que vous ne trichiez dans les jeux en ligne ou que vous ne fraudiez sur l'eShop. Cependant, vous devez toujours faire attention au lancement de homebrew téléchargés, surtout si vous ne faites pas confiance à la source, car le homebrew peut potentiellement endommager votre console ! - -### Que sont les exploits ? - -Les exploits sont des points d'entrée qui permettent de lancer d'autres homebrews. Dans le guide principal, vous utiliserez des exploits tels que l'exploitation du navigateur (http://wiiuexploit.xyz) et PayloadLoader (exploit de l'app Informations sur la santé et la sécurité). Tous les exploits actuels chargent `SD:/wiiu/payload.elf` qui prend ensuite la main sur le reste du processus de chargement du Homebrew. - -### Que sont les payloads ? - -Les payloads, qui sont normalement trouvés avec le nom de fichier `payload.elf`, existent pour faciliter le chargement, à l'aide de différents exploits, la même étape suivante. Ce qui rends toute future mise à jour plus simple. Peu importe quel exploit charge le payload, le résultat est toujours le même. Il est possible de basculer entre plusieurs payloads à l'aide de PayloadLoaderPayload. Le payload utilisé dans le guide principal est CustomRPXLoader, qui lance `SD:/wiiu/payload.rpx` et le `payload.rpx` utilisé dans le guide est EnvironmentLoader, qui vous permet de charger différents environnements. - -### Que sont les environnements ? - -Un environnement est un ensemble de « modules de configuration », qui seront exécutés dans un certain ordre lors du lancement de l'environnement. Such environments are Aroma and Tiramisu. Les modules de configuration sont de petits morceaux de homebrew/code qui sont exécutés une fois pour configurer un environnement. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installation de copies de jeux : ** 32 Go (une taille plus petite peut être utilisée, mais certains titres ont une taille de 20 Go) - - **Exécution de mods de jeu : ** 8 Go (une clé USB en FAT32 peut également être utilisée pour les mods) - - **Uniquement pour les applications Homebrew : ** Toute taille. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### Lors de l'extraction de certains fichiers, il y a des doublons de certains fichiers appelés "info.json" & "manifest.install", que dois-je faire avec ceux-ci ? - -Rien de spécial, vous pouvez les laisser là, les supprimer ou les remplacer par ceux que vous essayez de copier. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/fr_FR/docs/extras/find-wiiu-ip-address.md b/translations/fr_FR/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 14b143192d5..00000000000 --- a/translations/fr_FR/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# Comment trouver l'adresse IP de votre Wii U ---- -Guide rapide sur la façon de trouver l'adresse IP de votre console Wii U. - -### Ce dont vous avez besoin - -1. La dernière version de [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Copiez le contenu du fichier `ftpiiu.zip` vers la racine de votre carte SD. - -### Instructions - -1. Lancez le Homebrew Launcher. -1. Lancez FTPiiU. -1. L'adresse IP de votre Wii U sera affichée au bas de l'écran. -1. Pour quitter FTPiiU, appuyez sur le bouton HOME. \ No newline at end of file diff --git a/translations/fr_FR/docs/extras/unblock-updates.md b/translations/fr_FR/docs/extras/unblock-updates.md deleted file mode 100644 index 88ad3d40ee9..00000000000 --- a/translations/fr_FR/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Déblocage des mises à jour ---- -Ceci est nécessaire si vous avez besoin d'effectuer une mise à jour du système. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Appuyez sur A pour sélectionner `Check`. -1. Sélectionnez `Boot options`. -1. Vous serez invité à choisir si vous souhaitez modifier le titre qui sera lancé lors du démarrage de la console. Press A to select `Switch back to Wii U Menu`. -1. Une fois le processus terminé, appuyez sur A pour éteindre la console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/fr_FR/docs/extras/uninstall-cbhc.md b/translations/fr_FR/docs/extras/uninstall-cbhc.md deleted file mode 100644 index e1c2f3304e7..00000000000 --- a/translations/fr_FR/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Désinstaller CBHC ---- -Cette page vous guidera tout au long du processus de désinstallation de CBHC de votre Wii U. - -### Instructions {docsify-ignore} - -1. Lancez le Homebrew Launcher. -1. Lancez CBHC Installer. -1. Sélectionnez le jeu DS Console Virtuelle dans lequel CBHC est installé puis appuyez sur le bouton `A`. -1. Lisez les avertissements puis appuyez sur le bouton `B`. -1. Vérifiez que votre Wii U ne démarre plus automatiquement sur CBHC en redémarrant la console. -1. Si vous ne voyez plus l'écran de démarrage automatique (Autobooting...) ou menu de CBHC lors du démarrage de la console, vous pouvez lancer les Paramètres de la console, puis aller dans la Gestion des données et désinstallez en toute sécurité l'application appelée `DON'T TOUCH ME`. - -?> Si vous voyez une pop-up disant "Une erreur de mémoire système est survenue. Éteignez la console, puis réessayez." pendant la suppression de l'application `DONT TOUCH ME` , redémarrez la console et essayez à nouveau de supprimer l'application. **Veuillez vous assurer que vous avez suivi toutes les étapes ci-dessus avant de supprimer l'application.** \ No newline at end of file diff --git a/translations/fr_FR/docs/extras/uninstall-indexiine.md b/translations/fr_FR/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 1b84791539d..00000000000 --- a/translations/fr_FR/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Désinstaller Indexiine ---- -Cette page vous guidera tout au long du processus de désinstallation d'Indexiine de votre Wii U. - -### Instructions {docsify-ignore} - -1. Lancez le Homebrew Launcher. -1. Lancez Indexiine-Installer. -1. Appuyez sur le bouton B pour désinstaller Indexiine. -1. Vérifiez que votre Wii U ne lance plus automatiquement l'Homebrew Launcher en entrant dans le Navigateur Internet. diff --git a/translations/fr_FR/docs/extras/uninstall-payloadloader.md b/translations/fr_FR/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index 1fc43bd740f..00000000000 --- a/translations/fr_FR/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### Ce dont vous avez besoin {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Appuyez sur A pour sélectionner `Check`. -1. Sélectionnez `Boot options`. -1. Vous serez invité à choisir si vous souhaitez modifier le titre qui sera lancé lors du démarrage de la console. Press A to select `Switch back to Wii U Menu`. -1. Une fois le processus terminé, appuyez sur A pour éteindre la console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Appuyez sur A pour sélectionner `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. Une fois le processus terminé, appuyez sur A pour éteindre la console. diff --git a/translations/fr_FR/docs/privacy/privacy-policy.md b/translations/fr_FR/docs/privacy/privacy-policy.md deleted file mode 100644 index 698bfe5566f..00000000000 --- a/translations/fr_FR/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# AVIS DE CONFIDENTIALITÉ {docsify-ignore-all} - -**Dernière mise à jour le 18 janvier 2020** - - -Merci d'avoir choisi de faire partie de notre communauté à Wii U Hacks Guide ("société", "nous", "notre" ou "nos"). Nous nous engageons à protéger vos informations personnelles et votre droit à la vie privée. Si vous avez des questions ou des préoccupations concernant notre politique ou nos pratiques relatives à vos informations personnelles, veuillez nous contacter à l'adresse suivante : nh.wiiuguide@gmail.com. - -Lorsque vous visitez notre site web https://wiiu.hacks.guide et que vous utilisez nos services, vous nous confiez vos informations personnelles. Nous prenons votre vie privée très au sérieux. Dans cet avis de confidentialité, nous décrivons notre politique en matière de protection de la vie privée. Nous nous efforçons de vous expliquer le plus clairement possible quelles sont les informations que nous recueillons, comment nous les utilisons et quels sont vos droits en la matière. Nous espérons que vous prendrez le temps de le lire attentivement, car il est important. Si vous n'acceptez pas certaines conditions de la présente politique de confidentialité, veuillez cesser d'utiliser nos sites et nos services. - -La présente politique de confidentialité s'applique à toutes les informations collectées par le biais de notre site web (tel que https://wiiu.hacks.guide), et/ou de tout service, vente, marketing ou événement connexe (nous les désignons collectivement dans la présente politique de confidentialité sous le nom de "**Sites**"). - -**Veuillez lire attentivement cette politique de confidentialité.** - - -## TABLE DES MATIÈRES - -[1. QUELLES SONT LES INFORMATIONS QUE NOUS RECUEILLONS ?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. UTILISONS-NOUS DES COOKIES ET D'AUTRES TECHNOLOGIES DE SUIVI ?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. QUELS SONT VOS DROITS EN MATIÈRE DE PROTECTION DE LA VIE PRIVÉE ?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. LES RÉSIDENTS DE CALIFORNIE ONT-ILS DES DROITS SPÉCIFIQUES EN MATIÈRE DE VIE PRIVÉE ?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. FAISONS-NOUS DES MISES À JOUR DE CETTE POLITIQUE ?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. COMMENT POUVEZ-VOUS NOUS CONTACTER AU SUJET DE CETTE POLITIQUE ?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. QUELLES SONT LES INFORMATIONS QUE NOUS RECUEILLONS ? :id=_1-what-information-do-we-collect - -***En bref:*** *Nous ne recueillons aucune information personnelle.* - -Nous ne recueillons pas d'informations personnelles sous quelque forme que ce soit. Cependant, notre hébergeur, [GitHub Pages](https://pages.github.com/) peut recueillir des informations personnelles. Pour plus d'informations, voir la [Déclaration de confidentialité de GitHub](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. UTILISONS-NOUS DES COOKIES ET D'AUTRES TECHNOLOGIES DE TRAÇAGE :id=_2-do-we-use-cookies-and-other-tracking-technologies -***En bref:*** *Nous n'utilisons pas les cookies et autres technologies de suivi pour collecter et stocker vos informations.* - -Nous n'utilisons pas de cookies ni de technologies de suivi similaires (comme les pixels invisibles et les balises web) pour accéder à des informations ou les stocker. - - -### 3. QUELS SONT VOS DROITS EN MATIÈRE DE PROTECTION DE LA VIE PRIVÉE ? :id=_3-what-are-your-privacy-rights - -***En bref:*** *Dans certaines régions, comme l'Espace économique européen, vous disposez de droits qui vous permettent d'accéder à vos informations personnelles et de les contrôler plus facilement. Vous pouvez réviser, modifier ou résilier votre compte à tout moment.* - -Dans certaines régions (comme l'Espace économique européen), vous disposez de certains droits en vertu des lois applicables en matière de protection des données. Il peut s'agir du droit (i) de demander l'accès et d'obtenir une copie de vos informations personnelles, (ii) de demander la rectification ou l'effacement, (iii) de restreindre le traitement de vos informations personnelles et (iv) le cas échéant, de la portabilité des données. Dans certaines circonstances, vous pouvez également avoir le droit de vous opposer au traitement de vos informations personnelles. Pour faire une telle demande, veuillez utiliser les coordonnées [de contact](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) fournies ci-dessous. Nous examinerons toute demande et y donnerons suite conformément aux lois applicables en matière de protection des données. - -Si nous nous appuyons sur votre consentement pour traiter vos informations personnelles, vous avez le droit de retirer votre consentement à tout moment. Veuillez toutefois noter que cela n'affectera pas la légalité du traitement avant son retrait. - -Si vous résidez dans l'Espace économique européen et que vous pensez que nous traitons illégalement vos informations personnelles, vous avez également le droit de vous plaindre auprès de votre autorité locale de contrôle de la protection des données. Vous pouvez trouver leurs coordonnées ici : http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. LES RÉSIDENTS DE CALIFORNIE ONT-ILS DES DROITS SPÉCIFIQUES EN MATIÈRE DE VIE PRIVÉE ? :id=_4-do-california-residents-have-specific-privacy-rights - -***En bref :*** *Oui, si vous êtes résident de Californie, vous bénéficiez de droits spécifiques concernant l'accès à vos informations personnelles.* - -La section 1798.83 du code civil californien, également connue sous le nom de loi "Shine The Light", permet à nos utilisateurs résidant en Californie de demander et d'obtenir de nous, une fois par an et gratuitement, des informations sur les catégories d'informations personnelles (le cas échéant) que nous avons divulguées à des tiers à des fins de marketing direct et les noms et adresses de tous les tiers avec lesquels nous avons partagé des informations personnelles au cours de l'année civile précédente. Si vous êtes un résident de Californie et que vous souhaitez faire une telle demande, veuillez nous soumettre votre demande par écrit en utilisant les coordonnées fournies ci-dessous. - -Si vous avez moins de 18 ans, que vous résidez en Californie et que vous possédez un compte enregistré sur les sites, vous avez le droit de demander la suppression des données indésirables que vous publiez publiquement sur les sites. Pour demander la suppression de ces données, veuillez nous contacter en utilisant les coordonnées fournies ci-dessous, et inclure l'adresse électronique associée à votre compte et une déclaration indiquant que vous résidez en Californie. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. FAISONS-NOUS DES MISES À JOUR DE CETTE POLITIQUE ? :id=_5-do-we-make-updates-to-this-policy - -***En bref:*** *Oui, nous mettrons à jour cette politique si nécessaire pour rester en conformité avec les lois pertinentes.* - -Nous pouvons mettre à jour cette politique de confidentialité de temps en temps. La version mise à jour sera indiquée par une date "Révisée" et la version mise à jour sera effective dès qu'elle sera accessible. Si nous apportons des modifications importantes à la présente politique de confidentialité, nous pouvons vous en informer soit en affichant de façon bien visible un avis de ces modifications, soit en vous envoyant directement une notification. Nous vous encourageons à consulter fréquemment cette politique de confidentialité pour être informés de la façon dont nous protégeons vos renseignements. - - -### 6. COMMENT POUVEZ-VOUS NOUS CONTACTER AU SUJET DE CETTE POLITIQUE ? :id=_6-how-can-you-contact-us-about-this-policy - -Si vous avez des questions ou des commentaires sur cette politique, vous pouvez nous envoyer un e-mail à nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/fr_FR/docs/sidebar.md b/translations/fr_FR/docs/sidebar.md deleted file mode 100644 index 7bf2ef44517..00000000000 --- a/translations/fr_FR/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **Guide de l'utilisateur** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [Modding de la vWii](vwii/vwii-modding) -- **Résolution de problèmes** -- [Problèmes courants & solutions](common-issues-fixes) -- [Récupérer un·e IOS/Chaîne vWii](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [Modding de la vWii](archive/vwii/sd-preparation) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](donations) -- [À propos](about) -- **Confidentialité** -- [Politique de confidentialité](privacy-policy) diff --git a/translations/fr_FR/docs/troubleshooting/common-issues-fixes.md b/translations/fr_FR/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index 057e3ebbb30..00000000000 --- a/translations/fr_FR/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Problèmes courants & solutions {docsify-ignore-all} ---- -### Les erreurs courantes de Haxchi - - - **-3:** Aucune carte SD détectée. Réinsérez la carte SD et essayez à nouveau. Assurez-vous que la carte SD est au format FAT32. Si l'erreur persiste, essayez de souffler dans le port carte SD car il peut y avoir de la poussière à l'intérieur. - - - **-4:** carte SD détectée mais n'a pas pu être montée. Vérifiez si la carte SD utilise le MBR et non le GPT. Vérifiez également s'il existe d'autres partitions sur la carte SD et fusionnez-les en une seule partition primaire. - - - **-5:** Fichiers manquants sur la carte SD. Vérifiez si votre carte SD contient l'Homebrew Launcher situé dans /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Erreurs du navigateur - - - **FSGetMountSource failed:** Même chose que -3 ci-dessus, cela signifie qu'aucune carte SD n'a été détectée. Réinsérez la carte SD et réessayez. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Fichier payload manquant sur la carte SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** `homebrew_launcher` manquant sur la carte SD. Assurez-vous que vous avez `homebrew_launcher.elf` dans le dossier /wiiu/apps/homebrew_launcher. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Le menu Gestion des données demande de supprimer les données inutiles, qu'est-ce que cela signifie ? - -Il s'agit des fichiers restants, ce qui est dû à une ou plusieurs installations incomplètes. Choisissez toujours Oui pour supprimer ces données, car elles prennent de la place inutilement. Si jamais le processus de suppression des données semble ne pas fonctionner et tourne indéfiniment, vous pouvez supprimer manuellement les données vous-même. -Utilisez FTPiiU Everywhere et naviguez jusqu'à `/storage_mlc/usr/import` puis supprimez tous les fichiers du dossier s'il y en a. C'est là que se trouvent les installations partielles lorsque des installations échouent. Ce sera `/storage_usb/usr/import` si installé sur un périphérique USB. -Le dossier `import` doit toujours être vide. - -### Mon disque dur ne fonctionne pas ou fait un bruit de clic bizarre, que dois-je faire ? - -Cela est dû à une sous alimentation en électricité du disque dur car la Wii U n'en fournit pas assez au travers d'un seul port USB. - -Vous pouvez régler ce problème en utilisant soit un disque dur alimenté par une source externe, soit un câble en Y pour connecter le disque dur à deux ports USB. - -Si votre disque dur a fonctionné pendant un certain temps puis a cessé de fonctionner pour certains jeux/toutes les jeux, c'est le même problème et il peut être résolu avec les mêmes méthodes. - -### Lors de l'extraction de certains fichiers, il y a des doublons de certains fichiers appelés "info.json" & "manifest.install", que dois-je faire avec ceux-ci ? - -Rien de spécial, vous pouvez les laisser là, les supprimer ou les remplacer par ceux que vous essayez de copier. Ces dossiers ne sont pas utilisés dans le processus, par conséquent, n'auront pas d'impact en étant ou en n'étant pas là. - -### Ma console a soudainement perdu sa connectivité en ligne et j'ai un disque dur posé sur le dessus de la console, que dois-je faire ? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/fr_FR/docs/troubleshooting/fix-errcode-112-1037.md b/translations/fr_FR/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index 48b330c1f63..00000000000 --- a/translations/fr_FR/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# Comment corriger le code d'erreur 112-1037 ---- -Cette page vous guidera tout au long du processus de correction du code d'erreur 112-1037. - -### Ce dont vous avez besoin {docsify-ignore} - -- Une installation [Homebrew fonctionnelle](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(clic droit -> Enregistrer le fichier sous... -> Cliquez sur OK).** -- La dernière version de [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Installez Python sur votre ordinateur. - -### Corriger le code d'erreur - - - -#### **Windows** - -### Windows - -1. Allumez votre Wii U. -1. Lancez le Homebrew Launcher et lancez Mocha. -1. Retournez au Menu Wii U. -1. Ouvrez une fenêtre d'invite de commande. -1. Utilisez la commande suivante : `cd `. - - Exemple: cd C:\Users\username\Downloads. -1. Utilisez la commande suivante : `py -3 -i wupclient.py`. -1. Entrez l'adresse IP de votre Wii U. - - Vous ne savez pas comment la trouver? Lisez [cela](find-wiiu-ip-address). -1. Utilisez la commande appropriée en fonction de la région de votre console : - - JPN : w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. Si la commande a fonctionné, vous obtiendrez la réponse suivante : `chmod returned 0x0`. -1. Le code d'erreur devrait maintenant avoir disparu. - -#### **macOS & Linux** - -### macOS & Linux - -1. Allumez votre Wii U. -1. Lancez le Homebrew Launcher et lancez Mocha. -1. Retournez au Menu Wii U. -1. Ouvrez une fenêtre du Terminal. -1. Utilisez la commande suivante : `cd `. - - Sur macOS, l'endroit le plus courant pour trouver vos fichiers téléchargés est /Users/username/Downloads. - - Sous Linux, l'endroit le plus courant pour trouver vos fichiers téléchargés est /home/username/Downloads. -1. Utilisez la commande suivante : `python3 -i wupclient.py`. -1. Entrez l'adresse IP de votre Wii U. - - Vous ne savez pas comment la trouver? Lisez [cela](find-wiiu-ip-address). -1. Utilisez la commande appropriée en fonction de la région de votre console : - - JPN : w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. Si la commande a fonctionné, vous obtiendrez la réponse suivante : `chmod returned 0x0`. -1. Le code d'erreur devrait maintenant avoir disparu. - - \ No newline at end of file diff --git a/translations/fr_FR/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/fr_FR/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index 28beb0488b8..00000000000 --- a/translations/fr_FR/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Récupération d'un IOS/d'une chaîne vWii ---- -Cette page vous guidera dans le processus de récupération d'un IOS ou d'une chaîne sur votre vWii, qu'il/elle ait été corrompu·e ou supprimé·e pour une raison quelconque. - -!> Cela peut détruire la NAND de votre vWii si vous ne faites pas attention ! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> Si vous utilisez une méthode de blocage de mise à jour du système, veuillez [la supprimer](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### Ce dont vous avez besoin {docsify-ignore} - -- Une installation [Homebrew fonctionnelle](introduction) sur le côté de la Wii U. -- La dernière version de [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copiez le contenu du fichier `decaffeinator.zip` vers la racine de votre carte SD. -1. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. -1. Allumez votre Wii U et lancez le CFW de votre choix (Mocha, Haxchi ou CBHC). -1. Lancez le Homebrew Launcher. -1. Lancez vWii Decaffeinator. - -### Processus de récupération - -Différentes options vous seront proposées. Il est recommandé de faire une première tentative de restauration en passant par le menu `Advanced options` si vous savez ce qu'il faut restaurer, ou `Light mode` si vous n'êtes pas sûr. Dans les cas extrêmes où aucune autre option ne résout le problème, il convient de choisir `Aggressive mode`. - - - -#### **Advanced options** - -### Advanced options - -?> Ce mode efface les IOS et les chaînes spécifié·e·s pour les réinstaller. Toutes les autres données (y compris les cIOS) seront conservé·e·s. - -
-Cliquez ici pour voir ce qui peut être récupéré avec cette méthode. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Sélectionnez `Advanced options` dans le menu. -1. Utilisez les flèches pour séléctionner ce que vous souhaitez restaurer. -1. Appuyez sur Start pour lancer le processus de restauration. -1. Lorsque l'application a terminé, autorisez l'application à lancer les Paramètres de la console. -1. Effectuez une [Mise à jour de la console](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) pour terminer le processus de restauration. - -?> Vous pouvez maintenant réactiver votre méthode de [blocage des mises à jour du système](block-updates). - -#### **Light mode** - -### Light mode - -?> Ce mode efface le Menu Système, les données sauvegardées sur le Bureau Wii, les IOS et autres titres du système pour en réinstaller des versions propres. Veuillez noter que cela supprimera également tous les cIOS et devront être réinstallés. Toutes les autres données seront conservées. - -1. Sélectionnez `Light mode` dans le menu. -1. Appuyez sur Start pour lancer le processus de restauration. -1. Lorsque l'application a terminé, autorisez l'application à lancer les Paramètres de la console. -1. Effectuez une [Mise à jour de la console](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) pour terminer le processus de restauration. - -?> Vous pouvez maintenant réactiver votre méthode de [blocage des mises à jour du système](block-updates). - -> Si vous recevez le code d'erreur 160-0101 lorsque vous démarrez la console après avoir utilisé vWii Decaffeinator, retirez le disque inséré et débranchez tous les lecteurs externes et redémarrez la console. - -#### **Aggressive mode** - -### Aggressive mode - -!> Ce mode efface **tout** pour réinstaller des versions propres des IOS et des chaînes par défaut. Veuillez noter que tous les cIOS, les données de sauvegarde et les chaînes seront perdu·e·s, et que la NAND de votre vWii sera comme en sortie d'usine ! - -1. Sélectionnez `Aggressive mode` dans le menu. -1. Lisez l'avertissement dans son intégralité. Si vous souhaitez poursuivre, appuyez sur Start pour lancer le processus de restauration. -1. Lorsque l'application se termine, autorisez l'application à lancer les Paramètres de la console. -1. Effectuez une [Mise à jour de la console](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) pour terminer le processus de restauration. - -?> Vous pouvez maintenant réactiver votre méthode de [blocage des mises à jour du système](block-updates). - -> Si vous recevez le code d'erreur 160-0101 lorsque vous démarrez la console après avoir utilisé vWii Decaffeinator, retirez le disque inséré et débranchez tous les lecteurs externes et redémarrez la console. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/fr_FR/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/fr_FR/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index e8d5b31ac26..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Exploit du navigateur {docsify-ignore} - -Pour installer le CFW, nous devons d'abord lancer le Homebrew Launcher à travers l'exploit du navigateur. Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre ordinateur et insérez-la dans votre console Wii U. -1. Lancez le navigateur Internet et allez sur le site web `wiiuexploit.xyz`. -1. Cliquez sur `Run Homebrew Launcher!`. Votre console devrait lancer l'Homebrew Launcher. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/fr_FR/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 1debbcd98d0..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choisissez votre jeu DS VC - -La première chose à faire est de décider quel jeu Console Virtuelle DS ("VC" pour Virtual Console en anglais) vous allez acheter. -Veuillez noter que le jeu dans lequel vous avez injecté Haxchi/CBHC ne sera plus jouable tant que vous n'aurez pas désinstallé Haxchi/CBHC et réinstallé le jeu depuis l'eShop. - -### Jeux DS VC compatibles - -?> Si vous avez une console de région européenne, il y a une chance que vous ayez déjà obtenu Programme d'Entraînement Cérébral du Dr Kawashima: Quel âge a votre cerveau ? gratuitement. Rendez-vous sur [l'eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) et vérifiez si vous avez obtenu le jeu. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/fr_FR/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/fr_FR/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index 2cb29febb10..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installation de l'Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Allumez votre console. -1. Appuyez sur le bouton HOME pendant que la console affiche `Autobooting...` pour accéder au menu d'amorçage. -1. Sélectionnez `Boot Homebrew Launcher` pour lancer l'Homebrew Launcher. -1. Naviguez dans l'Homebrew Launcher et lancez l'application WUP Installer GX2. -1. Utilisez l'écran tactile pour sélectionner `Homebrew Launcher Channel`. Appuyez sur `Install` et confirmez avec `Yes`. -1. Sélectionnez la NAND comme destination de l'installation. Ceci installera l'Homebrew Launcher Channel sur le Menu Wii U. -1. Une fois le processus terminé, appuyez sur le bouton HOME jusqu'à ce que vous reveniez sur le Menu Wii U. -1. Vous verrez maintenant l'Homebrew Launcher Channel installé sur votre Menu Wii U. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/fr_FR/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index 2c92c370077..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Lancement du CFW {docsify-ignore} - -Maintenant que vous avez votre sauvegarde de la NAND au cas où quelque chose se passerait mal plus tard, vous pouvez exécuter le CFW sur votre console. - -Contrairement aux consoles telles que la DSi, la Wii ou la 3DS, le CFW sur la Wii U est temporaire. Cela signifie que dès que votre console redémarre, vous perdrez le CFW et devrez suivre ces instructions à nouveau. Ceci peut être ignoré en installant CBHC sur une installation Haxchi CFW. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Ne formatez pas la console lorsque CBHC est installé !
- Ne supprimez pas le compte de l'utilisateur qui a acheté le jeu Console Virtuelle DS !
- Ne réinstallez pas le même jeu en utilisant WUP Installer ou depuis l'eShop !
- N'installez pas Haxchi par dessus CBHC !
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Ne déplacez pas le jeu Console Virtuelle DS sur un périphérique USB ! - -!> Breaking one of the above rules will result in a brick. - -> Si vous craignez d'enfreindre l'une de ces règles lors de l'utilisation de CBHC, envisagez de mettre en place un contrôle parental pour votre utilisateur ! Bloquer la `Gestion des données` et définir la `Classification par âge` à la plus haute catégorie possible peut aider à prévenir les erreurs courantes que les utilisateurs peuvent faire en utilisant CBHC. Cliquez [ici](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) pour plus d'informations sur la façon de modifier vos paramètres de Contrôle Parental. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre PC et insérez-la dans votre console Wii U. -1. Si vous ne l'avez pas encore fait, téléchargez maintenant le jeu Console Virtuelle DS de votre choix sur l'eShop. -1. Lancez l'Homebrew Launcher sur votre console comme [expliqué précédemment](browser-exploit). -1. Naviguez dans l'Homebrew Launcher et ouvrez l'application Haxchi. -1. Utilisez la croix directionnelle pour déplacer le curseur sur le jeu dans lequel vous souhaitez installer Haxchi et appuyez sur le bouton A pour l'installer. -1. Une fois l'installation terminée, votre console lancera le Menu Wii U. Vous verrez votre jeu remplacé par une icône Haxchi. -1. Exécutez le jeu DS modifié. Cela redémarrera la console et activera le CFW. -1. Exécutez à nouveau le jeu DS modifié et maintenez le bouton A pendant le lancement de celui-ci. Cela lancera l'Homebrew Launcher. -1. Naviguez dans l'Homebrew Launcher et ouvrez l'application CBHC. -1. Utilisez la croix directionnelle pour déplacer le curseur sur le jeu dans lequel vous avez précédemment installé Haxchi et appuyez sur le bouton A pour installer CBHC. -1. Une fois l'installation terminée, votre console lancera le Menu Wii U. -1. Redémarrez votre console. Si CBHC a correctement été installé, vous devriez voir un nouveau menu de démarrage. (CBHC n'est pas compatible avec le démarrage rapide. Si vous utilisez le Menu Démarrage Rapide, veuillez le désactiver.) -1. Utilisez la croix directionnelle pour naviguer vers `Autoboot: Disabled` et appuyez sur le bouton A jusqu'à ce que `Autoboot: System Menu` soit affiché. -1. Utilisez la croix directionnelle pour naviguer vers `Boot System Menu` et appuyez sur le bouton A. Cela lancera le Menu Wii U avec le CFW activé. -1. Votre console va alors maintenant démarrer en activant le CFW automatiquement à chaque redémarrage. -1. Vous pouvez maintenant rebrancher à nouveau tous les périphériques USB que vous aviez branchés avant de commencer le guide. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/cbhc/nand-backup.md b/translations/fr_FR/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 79fa3263df9..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Faire une sauvegarde de la NAND {docsify-ignore} - -Au cas où quelque chose se passe mal dans le processus ultérieur et que votre Wii U se retrouve brickée, restaurer une sauvegarde de la NAND précédemment créée peut la faire fonctionner de nouveau. - -### Instructions {docsify-ignore} - -?> La NAND d'une Wii U fait (selon votre modèle) soit 8 Go soit 32 Go. Par conséquent, pour créer une sauvegarde complète de la NAND de votre console, votre carte SD doit être plus grande que la taille de votre NAND. Si vous n'avez pas une carte SD assez grande, vous pouvez sauter la partie `MLC` qui est optionnelle et inclut des fichiers de sauvegarde et des données de jeu et par conséquent, n'est pas nécessaire pour récupérer la plupart des types de bricks. - -?> La restauration d'une sauvegarde de la NAND sur la Wii U nécessite du matériel supplémentaire et des compétences en micro soudure.
Cependant, faire une sauvegarde de la NAND est **toujours** utile, donc ne l'ignorez pas.
Votre sauvegarde de la NAND est unique à votre système. Les sauvegardes des autres consoles **ne fonctionneront pas**. - -1. Naviguez à travers l'Homebrew Launcher et lancez l'application `Wii U NAND Dumper`. -1. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optionnel** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Appuyez sur le bouton A pour démarrer le processus de dumping. -1. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -1. Pour vous assurer de ne pas perdre les fichiers, copiez `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` et si vous avez choisi de faire une sauvegarde complète, `chaque fichier mlc.bin.part` sur votre ordinateur. -1. Supprimez les fichiers de votre carte SD pour libérer de l'espace. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/fr_FR/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index fafe5f54c13..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Préparation de la carte SD {docsify-ignore} - -Nous allons maintenant placer les fichiers du CFW requis et quelques fichiers homebrew supplémentaires sur la carte SD. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. Si votre carte SD n'est pas formatée en FAT32, utilisez [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) avec 32k (32768) en Taille d'unité d'allocation pour la formater. **Ne nommez pas** la carte SD en tant que `wiiu` ou cela causera des problèmes avec les homebrews. - -### Ce dont vous avez besoin {docsify-ignore} - -- La dernière version de [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Vous devrez télécharger le fichier `payload.zip`. -- La version 1.4 de [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Vous devrez télécharger la version 1.4 `homebrew_launcher.v1.4.zip` de The Homebrew Launcher. -- La dernière version de [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- La dernière version de [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Vous devrez télécharger le fichier `homebrew_launcher_channel.v2.1_fix.zip`. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La dernière version de l'[Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Vous devrez télécharger le fichier `wiiu-extracttosd.zip`. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- La dernière version de SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Remarque** Les fichiers info.json et manifest.install ne sont pas nécessaires pour le processus de modding et peuvent donc être supprimés. - -1. Insérez la carte SD de votre Wii U dans votre PC. -1. Créez un dossier appelé `install` à la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher_channel.v2.1_fix.zip` dans le dossier `install` que vous avez créé. -1. Copiez le contenu du fichier `haxchi.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `cbhc.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wup_installer_gx2.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `nanddumper.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wiiu-extracttosd.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher.v.1.4.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `savemii_mod.zip` vers la racine de votre carte SD. -1. Copiez le fichier `payload.elf` du fichier `payload.zip` vers le dossier `wiiu` de votre carte SD. ----------- - -### Disposition de la carte SD {docsify-ignore} - -
-Cliquez ici pour afficher la disposition finale de la carte SD. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Toutes les autres applications comme disc2app, nanddumper, etc. devraient être ici aussi) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fr_FR/docs/user-guide/archive/cbhc/sidebar.md b/translations/fr_FR/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 109ccec59ef..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Page d'accueil](../../introduction) -- [Choisissez un CFW](../cfw-choice) -- [Choisissez votre jeu DS VC](ds-vc-choice) -- [Préparation de la carte SD](sd-preparation) -- [Exploit du navigateur](browser-exploit) -- [Faire une sauvegarde de la NAND](nand-backup) -- [Lancement du CFW](launching-cfw) -- [Installer l'Homebrew Channel](installing-hblc) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../../donations) -- [À propos](../../about) \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/cfw-choice.md b/translations/fr_FR/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 57f03b75d10..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choisissez le CFW que vous voulez ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Nécessite un jeu Console Virtuelle DS acheté et installé depuis l'eShop. -- Peut être utilisé pour lancer le CFW directement à partir du Menu Wii U. -- Doit être relancé à partir du Menu Wii U à chaque redémarrage pour activer le custom firmware. -- Ses fonctionnalités peuvent être étendues en installant ColdbootHaxchi (CBHC) sur une installation existante de Haxchi. - -### [**Continuer avec Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Ne formatez pas la console lorsque CBHC est installé !
- Ne supprimez pas le compte de l'utilisateur qui a acheté le jeu Console Virtuelle DS !
- Ne réinstallez pas le même jeu en utilisant WUP Installer ou depuis l'eShop !
- N'installez pas Haxchi par dessus CBHC ! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Ne déplacez pas le jeu Console Virtuelle DS sur un périphérique USB ! - -!> Breaking one of the above rules **can** result in a brick! - -> Si vous craignez d'enfreindre l'une de ces règles lors de l'utilisation de CBHC, envisagez de mettre en place un contrôle parental pour votre utilisateur ! Bloquer la `Gestion des données` et définir la `Classification par âge` à la plus haute catégorie possible peut aider à prévenir les erreurs courantes que les utilisateurs peuvent faire en utilisant CBHC. Cliquez [ici](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) pour plus d'informations sur la façon de modifier vos paramètres de Contrôle Parental. - -- Nécessite un jeu Console Virtuelle DS acheté et installé depuis l'eShop. -- Lance automatiquement le custom firmware à chaque démarrage de la console. - -### [**Continuer avec CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Ne nécessite aucun jeu, et est donc gratuit. -- Doit être relancé à partir de l'exploit du navigateur Internet à chaque redémarrage pour activer le custom firmware. -- N'est pas compatible avec l'Homebrew Launcher Channel. -- Peut nécessiter une connexion Internet en fonction du point d'entrée que vous choisissez. - -### [**Continuer avec Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/fr_FR/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/fr_FR/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 3aa48df3d8d..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Exploit du navigateur {docsify-ignore} - -Pour installer le CFW, nous devons d'abord lancer le Homebrew Launcher à travers l'exploit du navigateur. Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre ordinateur et insérez-la dans votre console Wii U. -1. Lancez le navigateur Internet et allez sur le site web `wiiuexploit.xyz`. -1. Cliquez sur `Run Homebrew Launcher!`. Votre console devrait lancer l'Homebrew Launcher. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/fr_FR/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index 8d855b3deb2..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choisissez votre jeu DS VC - -La première chose à faire est de décider quel jeu Console Virtuelle DS ("VC" pour Virtual Console en anglais) vous allez acheter. -Veuillez noter que le jeu dans lequel vous avez injecté Haxchi/CBHC ne sera plus jouable tant que vous n'aurez pas désinstallé Haxchi/CBHC et réinstallé le jeu depuis l'eShop. - -### Jeux DS VC compatibles - -?> Si vous avez une console de région européenne, il y a une chance que vous ayez déjà obtenu Programme d'Entraînement Cérébral du Dr Kawashima: Quel âge a votre cerveau ? gratuitement. Rendez-vous sur [l'eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) et vérifiez si vous avez obtenu le jeu. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/fr_FR/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/fr_FR/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index 213023137c1..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installation de l'Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Allumez votre console. -1. Lancez le jeu Haxchi DS à partir du menu Wii U. Cela lancera le Menu Wii U avec le CFW activé. -1. Lancez à nouveau le jeu DS Haxchi en maintenant le bouton A. Cela lancera l'Homebrew Launcher. -1. Naviguez dans l'Homebrew Launcher et lancez l'application WUP Installer GX2. -1. Utilisez l'écran tactile pour sélectionner `Homebrew Launcher Channel`. Appuyez sur `Install` et confirmez avec `Yes`. -1. Sélectionnez la NAND comme destination de l'installation. Ceci installera l'Homebrew Launcher Channel sur le Menu Wii U. -1. Une fois le processus terminé, appuyez sur le bouton HOME jusqu'à ce que vous reveniez sur le Menu Wii U. -1. Vous verrez maintenant l'Homebrew Launcher Channel installé sur votre Menu Wii U. N'oubliez pas que vous devrez lancer un CFW à chaque redémarrage pour faire fonctionner cette application. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/fr_FR/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index f12f05e677d..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Lancement du CFW {docsify-ignore} - -Maintenant que vous avez votre sauvegarde de la NAND au cas où quelque chose se passerait mal plus tard, vous pouvez exécuter le CFW sur votre console. - -Contrairement aux consoles telles que la DSi, la Wii ou la 3DS, le CFW sur la Wii U est temporaire. Cela signifie que dès que votre console redémarre, vous perdrez le CFW et devrez suivre ces instructions à nouveau. Ceci peut être ignoré en installant CBHC sur une installation Haxchi CFW. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Sortez la carte SD de votre PC et insérez-la dans votre console Wii U. -1. Si vous ne l'avez pas déjà fait, téléchargez votre jeu DS VC à partir de l'eShop. -1. Lancez l'Homebrew Launcher sur votre console comme [expliqué précédemment](browser-exploit). -1. Naviguez dans l'Homebrew Launcher et ouvrez l'application Haxchi. -1. Utilisez la croix directionnelle pour déplacer le curseur sur le jeu dans lequel vous souhaitez installer Haxchi et appuyez sur le bouton A pour l'installer. -1. Une fois l'installation terminée, votre console lancera le Menu Wii U. Vous verrez votre jeu remplacé par une icône Haxchi. -1. Exécutez le jeu DS modifié. Cela redémarrera la console et activera le CFW. -1. Vous devrez exécuter votre jeu DS Haxchi à chaque redémarrage pour lancer le CFW. -1. Vous pouvez maintenant rebrancher à nouveau tous les périphériques USB que vous aviez branchés avant de commencer le guide. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/haxchi/nand-backup.md b/translations/fr_FR/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 630c36dd4af..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Faire une sauvegarde de la NAND {docsify-ignore} - -Au cas où quelque chose se passe mal dans le processus ultérieur et que votre Wii U se retrouve brickée, restaurer une sauvegarde de la NAND précédemment créée peut la faire fonctionner de nouveau. - -### Instructions {docsify-ignore} - -?> La NAND d'une Wii U fait (selon votre modèle) soit 8 Go soit 32 Go. Par conséquent, pour créer une sauvegarde complète de la NAND de votre console, votre carte SD doit être plus grande que la taille de votre NAND. Si vous n'avez pas une carte SD assez grande, vous pouvez sauter la partie `MLC` qui est optionnelle et inclut des fichiers de sauvegarde et des données de jeu et par conséquent, n'est pas nécessaire pour récupérer la plupart des types de bricks. - -?> La restauration d'une sauvegarde de la NAND sur la Wii U nécessite du matériel supplémentaire et des compétences en micro soudure.
Cependant, faire une sauvegarde de la NAND est **toujours** utile, donc ne l'ignorez pas.
Votre sauvegarde de la NAND est unique à votre système. Les sauvegardes des autres consoles **ne fonctionneront pas**. - -1. Naviguez à travers l'Homebrew Launcher et lancez l'application `Wii U NAND Dumper`. -1. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optionnel** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Appuyez sur le bouton A pour démarrer le processus de dumping. -1. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -1. Pour vous assurer de ne pas perdre les fichiers, copiez `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` et si vous avez choisi de faire une sauvegarde complète, `chaque fichier mlc.bin.part` sur votre ordinateur. -1. Supprimez les fichiers de votre carte SD pour libérer de l'espace. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/fr_FR/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index 22e4f30b3d6..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Préparation de la carte SD {docsify-ignore} - -Nous allons maintenant placer les fichiers du CFW requis et quelques fichiers homebrew supplémentaires sur la carte SD. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. Si votre carte SD n'est pas formatée en FAT32, utilisez [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) avec 32k (32768) en Taille d'unité d'allocation pour la formater. **Ne nommez pas** la carte SD en tant que `wiiu` ou cela causera des problèmes avec les homebrews. - -### Ce dont vous avez besoin {docsify-ignore} - -- La dernière version de [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Vous devrez télécharger le fichier `payload.zip`. -- La version 1.4 de [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Vous devrez télécharger la version 1.4 `homebrew_launcher.v1.4.zip` de The Homebrew Launcher. -- La dernière version de [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- La dernière version de [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Vous devrez télécharger le fichier `homebrew_launcher_channel.v2.1_fix.zip`. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La dernière version de l'[Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Vous devrez télécharger le fichier `wiiu-extracttosd.zip`. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- La dernière version de SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Remarque** Les fichiers info.json et manifest.install ne sont pas nécessaires pour le processus de modding et peuvent donc être supprimés. - -1. Insérez la carte SD de votre Wii U dans votre PC. -1. Créez un dossier appelé `install` à la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher_channel.v2.1_fix.zip` dans le dossier `install` que vous avez créé. -1. Copiez le contenu du fichier `haxchi.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wup_installer_gx2.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `nanddumper.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wiiu-extracttosd.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher.v.1.4.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `savemii_mod.zip` vers la racine de votre carte SD. -1. Copiez le fichier `payload.elf` du fichier `payload.zip` vers le dossier `wiiu` de votre carte SD. ----------- - -### Disposition de la carte SD {docsify-ignore} - -
-Cliquez ici pour afficher la disposition finale de la carte SD. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Toutes les autres applications comme disc2app, nanddumper, etc. devraient être ici aussi) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fr_FR/docs/user-guide/archive/haxchi/sidebar.md b/translations/fr_FR/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index 839f1f9cd2c..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Page d'accueil](../../introduction) -- [Choisissez un CFW](../cfw-choice) -- [Choisissez votre jeu DS VC](ds-vc-choice) -- [Préparation de la carte SD](sd-preparation) -- [Exploit du navigateur](browser-exploit) -- [Faire une sauvegarde de la NAND](nand-backup) -- [Lancement du CFW](launching-cfw) -- [Installer l'Homebrew Channel](installing-hblc) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../../donations) -- [À propos](../../about) \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/fr_FR/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index f4fe7515a89..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Exploit en ligne - -- Nécessite une connexion Internet chaque fois que vous voulez lancer l'Homebrew Launcher. - -### [**Continuer avec l'exploit en ligne**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Nécessite une connexion Internet pour le processus d'installation, mais peut être utilisé hors ligne une fois installé. -- Nécessite que vous modifiiez un fichier système. - -### [**Continuer avec Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index a01fb62c30d..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Exploit du navigateur {docsify-ignore} - -Pour installer le CFW, nous devons d'abord lancer le Homebrew Launcher à travers l'exploit du navigateur. Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre ordinateur et insérez-la dans votre console Wii U. -1. Lancez le navigateur Internet et allez sur le site web `wiiuexploit.xyz`. -1. Cliquez sur `Run Homebrew Launcher!`. Votre console devrait lancer l'Homebrew Launcher. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index e3987fff451..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Modding du navigateur Internet {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Allumez votre Wii U. -1. Lancez le Navigateur Internet et ouvrez le site web `wiiuexploit.xyz`. -1. Cliquez sur `Run Homebrew Launcher!`. Votre console devrait lancer l'Homebrew Launcher. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. -1. Naviguez à travers l'Homebrew Launcher et lancez l'application `Indexiine Installer`. -1. Appuyez sur le bouton A pour installer Indexiine. -1. Une fois le processus terminé, fermez l'Homebrew Launcher pour revenir au Menu Wii U. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index df5c2991e0e..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Lancement du CFW {docsify-ignore} - -Contrairement aux consoles telles que la DSi, la Wii ou la 3DS, le CFW sur la Wii U est temporaire. Cela signifie que dès que votre console redémarre, vous perdrez le CFW et devrez suivre ces instructions à nouveau. Ceci peut être ignoré en installant CBHC sur une installation Haxchi CFW. - -### Instructions {docsify-ignore} - -1. Lancez l'Homebrew Launcher en lançant le navigateur Internet. -1. Naviguez dans l'Homebrew Launcher et ouvrez l'application Mocha CFW. -1. Il vous ramènera dans l'Homebrew Launcher et activera le CFW. -1. Vous devrez refaire ces étapes à chaque redémarrage pour lancer le CFW. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index e6fc03785db..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Faire une sauvegarde de la NAND {docsify-ignore} - -Au cas où quelque chose se passe mal dans le processus ultérieur et que votre Wii U se retrouve brickée, restaurer une sauvegarde de la NAND précédemment créée peut la faire fonctionner de nouveau. - -### Instructions {docsify-ignore} - -?> La NAND d'une Wii U fait (selon votre modèle) soit 8 Go soit 32 Go. Par conséquent, pour créer une sauvegarde complète de la NAND de votre console, votre carte SD doit être plus grande que la taille de votre NAND. Si vous n'avez pas une carte SD assez grande, vous pouvez sauter la partie `MLC` qui est optionnelle et inclut des fichiers de sauvegarde et des données de jeu et par conséquent, n'est pas nécessaire pour récupérer la plupart des types de bricks. - -?> La restauration d'une sauvegarde de la NAND sur la Wii U nécessite du matériel supplémentaire et des compétences en micro soudure.
Cependant, faire une sauvegarde de la NAND est **toujours** utile, donc ne l'ignorez pas.
Votre sauvegarde de la NAND est unique à votre système. Les sauvegardes des autres consoles **ne fonctionneront pas**. - -1. Naviguez à travers l'Homebrew Launcher et lancez l'application `Wii U NAND Dumper`. -1. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optionnel** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Appuyez sur le bouton A pour démarrer le processus de dumping. -1. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -1. Pour vous assurer de ne pas perdre les fichiers, copiez `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` et si vous avez choisi de faire une sauvegarde complète, `chaque fichier mlc.bin.part` sur votre ordinateur. -1. Supprimez les fichiers de votre carte SD pour libérer de l'espace. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index 6c9558fb721..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Préparation de la carte SD {docsify-ignore} - -Nous allons maintenant placer les fichiers du CFW requis et quelques fichiers homebrew supplémentaires sur la carte SD. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. Si votre carte SD n'est pas formatée en FAT32, utilisez [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) avec 32k (32768) en taille d'unité d'Allocation pour la formater. **Ne nommez pas** la carte SD en tant que `wiiu` ou cela causera des problèmes avec les homebrews. - -### Ce dont vous avez besoin {docsify-ignore} - -- Le fichier de configuration de Mocha. -- La dernière version de [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Vous devrez télécharger le fichier `payload.zip`. -- La version 1.4 de [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Vous devrez télécharger la version 1.4 `homebrew_launcher.v1.4.zip` de The Homebrew Launcher. -- La dernière version de [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La dernière version de l'[Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Vous devrez télécharger le fichier `wiiu-extracttosd.zip`. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- La dernière version de SaveMii Mod. -- La dernière version de [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Remarque** Les fichiers info.json et manifest.install ne sont pas nécessaires pour le processus de modding et peuvent donc être supprimés. - -1. Insérez la carte SD de votre Wii U dans votre PC. -1. Copiez le contenu du fichier `wup_installer_gx2.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `nanddumper.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wiiu-extracttosd.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher.v.1.4.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `mocha.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `indexiine-installer.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `savemii_mod.zip` vers la racine de votre carte SD. -1. Copiez le fichier `config.ini` dans le dossier `/wiiu/apps/mocha` de votre carte SD. -1. Copiez le fichier `payload.elf` du fichier `payload.zip` vers le dossier `wiiu` de votre carte SD. ----------- - -### Disposition de la carte SD {docsify-ignore} - -
-Cliquez ici pour afficher la disposition finale de la carte SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Toutes les autres applications comme disc2app, nanddumper, etc. devraient être ici aussi) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 9a3bf193827..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Page d'accueil](../../../introduction) -- [Choisissez un CFW](../../cfw-choice) -- [Choisissez un point d'entrée](../entrypoint-choice) -- [Préparation de la carte SD](sd-preparation) -- [Exploit du navigateur](browser-exploit) -- [Faire une sauvegarde de la NAND](nand-backup) -- [Modification du navigateur Internet](browser-modding) -- [Lancement du CFW](launching-cfw) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../../../donations) -- [À propos](../../../about) \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index d4cde4b0035..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Exploit du navigateur {docsify-ignore} - -Pour installer le CFW, nous devons d'abord lancer le Homebrew Launcher à travers l'exploit du navigateur. Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre ordinateur et insérez-la dans votre console Wii U. -1. Lancez le navigateur Internet et allez sur le site web `wiiuexploit.xyz`. -1. Cliquez sur `Run Homebrew Launcher!`. Votre console devrait lancer l'Homebrew Launcher. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index bfd5a0d3c33..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Lancement du CFW {docsify-ignore} - -Maintenant que vous avez votre sauvegarde de la NAND au cas où quelque chose se passerait mal plus tard, vous pouvez exécuter le CFW sur votre console. - -Contrairement aux consoles telles que la DSi, la Wii ou la 3DS, le CFW sur la Wii U est temporaire. Cela signifie que dès que votre console redémarre, vous perdrez le CFW et devrez suivre ces instructions à nouveau. Ceci peut être ignoré en installant CBHC sur une installation Haxchi CFW. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre PC et insérez-la dans votre console Wii U. -1. Lancez l'Homebrew Launcher sur votre console comme [expliqué précédemment](browser-exploit). -1. Naviguez dans l'Homebrew Launcher et ouvrez l'application Mocha CFW. -1. Il vous ramènera dans l'Homebrew Launcher et activera le CFW. -1. Vous devrez refaire ces étapes à chaque redémarrage pour lancer le CFW. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index bbac44b0206..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Faire une sauvegarde de la NAND {docsify-ignore} - -Au cas où quelque chose se passe mal dans le processus ultérieur et que votre Wii U se retrouve brickée, restaurer une sauvegarde de la NAND précédemment créée peut la faire fonctionner de nouveau. - -### Instructions {docsify-ignore} - -?> La NAND d'une Wii U fait (selon votre modèle) soit 8 Go soit 32 Go. Par conséquent, pour créer une sauvegarde complète de la NAND de votre console, votre carte SD doit être plus grande que la taille de votre NAND. Si vous n'avez pas une carte SD assez grande, vous pouvez sauter la partie `MLC` qui est optionnelle et inclut des fichiers de sauvegarde et des données de jeu et par conséquent, n'est pas nécessaire pour récupérer la plupart des types de bricks. - -?> La restauration d'une sauvegarde de la NAND sur la Wii U nécessite du matériel supplémentaire et des compétences en micro soudure.
Cependant, faire une sauvegarde de la NAND est **toujours** utile, donc ne l'ignorez pas.
Votre sauvegarde de la NAND est unique à votre système. Les sauvegardes des autres consoles **ne fonctionneront pas**. - -1. Naviguez à travers l'Homebrew Launcher et lancez l'application `Wii U NAND Dumper`. -1. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optionnel** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Appuyez sur le bouton A pour démarrer le processus de dumping. -1. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -1. Pour vous assurer de ne pas perdre les fichiers, copiez `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` et si vous avez choisi de faire une sauvegarde complète, `chaque fichier mlc.bin.part` sur votre ordinateur. -1. Supprimez les fichiers de votre carte SD pour libérer de l'espace. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index 822642bdd2f..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Préparation de la carte SD {docsify-ignore} - -Nous allons maintenant placer les fichiers du CFW requis et quelques fichiers homebrew supplémentaires sur la carte SD. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. Si votre carte SD n'est pas formatée en FAT32, utilisez [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) avec 32k (32768) en taille d'unité d'Allocation pour la formater. **Ne nommez pas** la carte SD en tant que `wiiu` ou cela causera des problèmes avec les homebrews. - -### Ce dont vous avez besoin {docsify-ignore} - -- Le fichier de configuration de Mocha. -- La dernière version de [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Vous devrez télécharger le fichier `payload.zip`. -- La version 1.4 de [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Vous devrez télécharger la version 1.4 `homebrew_launcher.v1.4.zip` de The Homebrew Launcher. -- La dernière version de [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La dernière version de l'[Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Vous devrez télécharger le fichier `wiiu-extracttosd.zip`. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- La dernière version de SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Remarque** Les fichiers info.json et manifest.install ne sont pas nécessaires pour le processus de modding et peuvent donc être supprimés. - -1. Insérez la carte SD de votre Wii U dans votre PC. -1. Copiez le contenu du fichier `wup_installer_gx2.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `nanddumper.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wiiu-extracttosd.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher.v.1.4.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `mocha.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `savemii_mod.zip` vers la racine de votre carte SD. -1. Copiez le fichier `config.ini` dans le dossier `/wiiu/apps/mocha` de votre carte SD. -1. Copiez le fichier `payload.elf` du fichier `payload.zip` vers le dossier `wiiu` de votre carte SD. ----------- - -### Disposition de la carte SD {docsify-ignore} - -
-Cliquez ici pour afficher la disposition finale de la carte SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Toutes les autres applications comme disc2app, nanddumper, etc. devraient être ici aussi) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 120d066a41c..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Exploit en ligne** -- [Page d'accueil](../../../introduction) -- [Choisissez un CFW](../../cfw-choice) -- [Choisissez un point d'entrée](../entrypoint-choice) -- [Préparation de la carte SD](sd-preparation) -- [Exploit du navigateur](browser-exploit) -- [Faire une sauvegarde de la NAND](nand-backup) -- [Lancement du CFW](launching-cfw) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../../../donations) -- [À propos](../../../about) \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/mocha/sidebar.md b/translations/fr_FR/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index 8b728585c20..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Page d'accueil](../../introduction) -- [Choisissez un CFW](../cfw-choice) -- [Choisissez un point d'entrée](entrypoint-choice) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../../donations) -- [À propos](../../about) \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/sidebar.md b/translations/fr_FR/docs/user-guide/archive/sidebar.md deleted file mode 100644 index b62737b159f..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Page d'accueil](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../../donations) -- [À propos](../../about) -- **Confidentialité** -- [Politique de confidentialité](../../privacy-policy) diff --git a/translations/fr_FR/docs/user-guide/archive/tiramisu/autoboot.md b/translations/fr_FR/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index 5a06c651c34..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autoboot de Tiramisu - -Actuellement, chaque fois que vous voudrez lancer Tiramisu, vous devrez lancer l'application Informations sur la santé et la sécurité. Si vous souhaitez démarrer automatiquement dans Tiramisu au démarrage de la console, vous pouvez démarrer automatiquement l'application Informations sur la santé et la sécurité. - -### Instructions - -1. Allumez la console pour démarrer sur le Menu Wii U, lancez l'application Informations sur la santé et la sécurité et maintenez le bouton X enfoncé pour ouvrir le menu Environment Loader. -1. Naviguez dans la liste à l'aide de la croix directionnelle et sélectionnez l'environnement « installer » `` , appuyez sur A pour le lancer. -1. Appuyez sur A pour sélectionner `Check`. -1. Sélectionnez `Boot options`. -1. Vous serez invité à choisir si vous souhaitez modifier le titre qui sera lancé lors du démarrage de la console. Appuyez sur A pour sélectionner `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. Le PayloadLoader sera maintenant lancé automatiquement à chaque démarrage de la console. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Naviguez dans la liste en utilisant la croix directionnelle pour survoler le titre que vous voulez démarrer automatiquement, puis appuyez sur le bouton Y pour définir le titre qui sera lancé automatiquement au démarrage de la console. - - Appuyez sur A pour lancer le titre sélectionné. - diff --git a/translations/fr_FR/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/fr_FR/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index 264fa5137b3..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Exploit du navigateur - -Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions - -1. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. -1. Lancez le navigateur Internet et allez sur le site web `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/fr_FR/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/fr_FR/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 175b9caf118..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Allumez votre Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/fr_FR/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/fr_FR/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index e86da4de9b6..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Sortez la carte SD de votre PC et insérez-la dans votre console Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Naviguez dans la liste à l'aide de la croix directionnelle et sélectionnez l'environnement « installer » `` , appuyez sur A pour le lancer. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/fr_FR/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index f82a3342e2f..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Faire une sauvegarde de la NAND - -Au cas où quelque chose se passe mal dans le processus ultérieur et que votre Wii U se retrouve brickée, restaurer une sauvegarde de la NAND précédemment créée peut la faire fonctionner de nouveau. - -### Instructions - -?> La NAND d'une Wii U fait (selon votre modèle) soit 8 Go soit 32 Go. Par conséquent, pour créer une sauvegarde complète de la NAND de votre console, votre carte SD doit être plus grande que la taille de votre NAND. Si vous n'avez pas une carte SD assez grande, vous pouvez sauter la partie `MLC` qui est optionnelle et inclut des fichiers de sauvegarde et des données de jeu et par conséquent, n'est pas nécessaire pour récupérer la plupart des types de bricks. - -?> La restauration d'une sauvegarde de la NAND sur la Wii U nécessite du matériel supplémentaire et des compétences en micro soudure.
Cependant, faire une sauvegarde de la NAND est **toujours** utile, donc ne l'ignorez pas.
Votre sauvegarde de la NAND est unique à votre système. Les sauvegardes des autres consoles **ne fonctionneront pas**. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optionnel** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Appuyez sur le bouton A pour démarrer le processus de dumping. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Supprimez les fichiers de votre carte SD pour libérer de l'espace. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/fr_FR/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/fr_FR/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index 8cb01f7b3df..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Préparation de la carte SD - -Nous allons maintenant placer les fichiers du CFW requis et quelques fichiers homebrew supplémentaires sur la carte SD. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. Si votre carte SD n'est pas formatée en FAT32, utilisez [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) avec 32k (32768) en Taille d'unité d'allocation pour la formater.
**Ne nommez pas** la carte SD en tant que `wiiu` ou cela causera des problèmes avec les homebrews. - -### Ce dont vous avez besoin - -- Les derniers fichiers de [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insérez la carte SD de votre Wii U dans votre PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### Disposition de la carte SD {docsify-ignore} - -
-Cliquez ici pour afficher la disposition finale de la carte SD. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/fr_FR/docs/user-guide/archive/tiramisu/sidebar.md b/translations/fr_FR/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 0a40879d490..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Page d'accueil](../../introduction) -- [Préparation de la carte SD](sd-preparation) -- [Exploit du navigateur](browser-exploit) -- [Faire une sauvegarde de la NAND](nand-backup) -- [Installation du PayloadLoader](installing-payloadloader) -- [Autoboot de Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../donations) -- [À propos](../about) diff --git a/translations/fr_FR/docs/user-guide/archive/vwii/browser-exploit.md b/translations/fr_FR/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 95463f36485..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/fr_FR/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/fr_FR/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/fr_FR/docs/user-guide/archive/vwii/installing-cioses.md b/translations/fr_FR/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index 14afe26b3c7..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installation des cIOS - -1. Allumez votre Wii U et lancez la vWii. -2. Lancez The Homebrew Channel. -3. Lancez d2x cIOS Installer. -4. Faites en sorte que ce qui suit soit identique à ce qui est affiché sur votre console : - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Faites en sorte que ce qui suit soit identique à ce qui est affiché sur votre console : - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Faites en sorte que ce qui suit soit identique à ce qui est affiché sur votre console : - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/fr_FR/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/fr_FR/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index 22a34a80ca7..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installer l'Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/fr_FR/docs/user-guide/archive/vwii/nand-backup.md b/translations/fr_FR/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index d8a807fe9e6..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Sauvegarde de la NAND - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Appuyez sur le bouton A pour démarrer le processus de dumping. -4. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Supprimez les fichiers de votre carte SD pour libérer de l'espace. -7. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. diff --git a/translations/fr_FR/docs/user-guide/archive/vwii/patching-ios80.md b/translations/fr_FR/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 5c662f40e92..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Lancez Patched IOS 80 Installer for vWii. -2. Lisez l'écran d'avertissement et attendez 30 secondes. -3. Appuyez sur n'importe quel bouton pour installer. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/fr_FR/docs/user-guide/archive/vwii/sd-preparation.md b/translations/fr_FR/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index d6d7b300c0c..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -Cette page vous guidera tout au long du processus de modding de votre vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### Ce dont vous avez besoin - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insérez la carte SD de votre Wii U dans votre PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. diff --git a/translations/fr_FR/docs/user-guide/archive/vwii/sidebar.md b/translations/fr_FR/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/fr_FR/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/fr_FR/docs/user-guide/aroma/autoboot.md b/translations/fr_FR/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index 25278581e27..00000000000 --- a/translations/fr_FR/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. Vous serez invité à choisir si vous souhaitez modifier le titre qui sera lancé lors du démarrage de la console. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. Le PayloadLoader sera maintenant lancé automatiquement à chaque démarrage de la console. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Naviguez dans la liste en utilisant la croix directionnelle pour survoler le titre que vous voulez démarrer automatiquement, puis appuyez sur le bouton Y pour définir le titre qui sera lancé automatiquement au démarrage de la console. - - Appuyez sur A pour lancer le titre sélectionné. diff --git a/translations/fr_FR/docs/user-guide/aroma/browser-exploit.md b/translations/fr_FR/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index b93436b6969..00000000000 --- a/translations/fr_FR/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Exploit du navigateur - -Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions - -1. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/fr_FR/docs/user-guide/aroma/finalizing-setup.md b/translations/fr_FR/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index d6de77bfb38..00000000000 --- a/translations/fr_FR/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/fr_FR/docs/user-guide/aroma/getting-started.md b/translations/fr_FR/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/fr_FR/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/fr_FR/docs/user-guide/aroma/installing-payloadloader.md b/translations/fr_FR/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 11031a932be..00000000000 --- a/translations/fr_FR/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Sortez la carte SD de votre PC et insérez-la dans votre console Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/fr_FR/docs/user-guide/aroma/nand-backup.md b/translations/fr_FR/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index e3a3ff2c827..00000000000 --- a/translations/fr_FR/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Faire une sauvegarde de la NAND - -Au cas où quelque chose se passe mal dans le processus ultérieur et que votre Wii U se retrouve brickée, restaurer une sauvegarde de la NAND précédemment créée peut la faire fonctionner de nouveau. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Votre sauvegarde de la NAND est unique à votre système. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Appuyez sur le bouton A pour démarrer le processus de dumping. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/fr_FR/docs/user-guide/aroma/sd-preparation.md b/translations/fr_FR/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c7bdb583bae..00000000000 --- a/translations/fr_FR/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Préparation de la carte SD - -We will now place the required Aroma files on the SD Card. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insérez la carte SD de votre Wii U dans votre PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### Disposition de la carte SD {docsify-ignore} - -
-Cliquez ici pour afficher la disposition finale de la carte SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/fr_FR/docs/user-guide/aroma/sidebar.md b/translations/fr_FR/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index 7a63fd51625..00000000000 --- a/translations/fr_FR/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Page d'accueil](../introduction) -- [Getting Started with Aroma](getting-started) -- [Préparation de la carte SD](sd-preparation) -- [Exploit du navigateur](browser-exploit) -- [Sauvegarde de la NAND](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../donations) -- [À propos](../about) diff --git a/translations/fr_FR/docs/user-guide/cbhc/browser-exploit.md b/translations/fr_FR/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index 531a89b20e7..00000000000 --- a/translations/fr_FR/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Exploit du navigateur {docsify-ignore} - -Pour installer le CFW, nous devons d'abord lancer le Homebrew Launcher à travers l'exploit du navigateur. Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre ordinateur et insérez-la dans votre console Wii U. -1. Lancez le navigateur Internet et allez sur le site web `wiiuexploit.xyz`. -1. Cliquez sur `Run Homebrew Launcher!`. Votre console devrait lancer l'Homebrew Launcher. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/cbhc/ds-vc-choice.md b/translations/fr_FR/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index a38180586c7..00000000000 --- a/translations/fr_FR/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choisissez votre jeu DS VC - -La première chose à faire est de décider quel jeu Console Virtuelle DS ("VC" pour Virtual Console en anglais) vous allez acheter. -Veuillez noter que le jeu dans lequel vous avez injecté Haxchi/CBHC ne sera plus jouable tant que vous n'aurez pas désinstallé Haxchi/CBHC et réinstallé le jeu depuis l'eShop. - -### Jeux DS VC compatibles - -?> Si vous avez une console de région européenne, il y a une chance que vous ayez déjà obtenu Programme d'Entraînement Cérébral du Dr Kawashima: Quel âge a votre cerveau ? gratuitement. Rendez-vous sur [l'eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) et vérifiez si vous avez obtenu le jeu. - -Si vous ne possédez aucun des jeux listés ci-dessous, Nous vous recommandons d'acheter Brain Age (Amérique du Nord) ou Programme d'entraînement cérébral du Dr Kawashima : Quel âge a votre cerveau ? (Europe) car il fait partie des jeux les moins chers et est un jeu auquel très peu de monde souhaite jouer. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Cérébrale Académie** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Programme d'Entraînement Cérébral du Dr Kawashima: Quel âge a votre cerveau ?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Programme d'Entraînement Cérébral du Dr Kawashima: Quel âge a votre cerveau ?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby : Le Pinceau du pouvoir** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby : Les souris attaquent** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi : Les Frères du temps** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokémon Donjon Mystère : Explorateurs du ciel** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/fr_FR/docs/user-guide/cbhc/installing-hblc.md b/translations/fr_FR/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index c085ff870cd..00000000000 --- a/translations/fr_FR/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installation de l'Homebrew Launcher Channel {docsify-ignore} - -Cette page installera l'Homebrew Launcher Channel comme application directement dans votre Menu Wii U pour un accès facile. - -?> Cette page est réservée aux utilisateurs de Haxchi et de CBHC. L'Homebrew Launcher Channel (la version de la Chaîne Homebrew que vous lancez depuis le Menu Wii U) **ne fonctionnera pas** avec Mocha CFW ! - -### Instructions {docsify-ignore} - -1. Allumez votre console. -1. Appuyez sur le bouton HOME pendant que la console affiche `Autobooting...` pour accéder au menu d'amorçage. -1. Sélectionnez `Boot Homebrew Launcher` pour lancer l'Homebrew Launcher. -1. Naviguez dans l'Homebrew Launcher et lancez l'application WUP Installer GX2. -1. Utilisez l'écran tactile pour sélectionner `Homebrew Launcher Channel`. Appuyez sur `Install` et confirmez avec `Yes`. -1. Sélectionnez la NAND comme destination de l'installation. Ceci installera l'Homebrew Launcher Channel sur le Menu Wii U. -1. Une fois le processus terminé, appuyez sur le bouton HOME jusqu'à ce que vous reveniez sur le Menu Wii U. -1. Vous verrez maintenant l'Homebrew Launcher Channel installé sur votre Menu Wii U. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/cbhc/launching-cfw.md b/translations/fr_FR/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 2f667b9e0b5..00000000000 --- a/translations/fr_FR/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Lancement du CFW {docsify-ignore} - -Maintenant que vous avez votre sauvegarde de la NAND au cas où quelque chose se passerait mal plus tard, vous pouvez exécuter le CFW sur votre console. - -Contrairement aux consoles telles que la DSi, la Wii ou la 3DS, le CFW sur la Wii U est temporaire. Cela signifie que dès que votre console redémarre, vous perdrez le CFW et devrez suivre ces instructions à nouveau. Ceci peut être ignoré en installant CBHC sur une installation Haxchi CFW. - -!> Une installation incorrecte de CBHC peut briquer votre Wii U. Veillez à respecter les règles suivantes lors de l'installation de CBHC :
- Le jeu DS doit être légitimement installé à partir de l'eShop !
- Ne formatez pas la console lorsque CBHC est installé !
- Ne supprimez pas le compte de l'utilisateur qui a acheté le jeu Console Virtuelle DS !
- Ne réinstallez pas le même jeu en utilisant WUP Installer ou depuis l'eShop !
- N'installez pas Haxchi par dessus CBHC !
- Ne désinstallez pas le jeu Console Virtuelle DS sans [désinstaller correctement CBHC d'abord](../uninstall-cbhc) !
- Ne déplacez pas le jeu Console Virtuelle DS sur un périphérique USB ! - -!> Enfreindre l'une des règles ci-dessus engendrera un brick de la console. - -> Si vous craignez d'enfreindre l'une de ces règles lors de l'utilisation de CBHC, envisagez de mettre en place un contrôle parental pour votre utilisateur ! Bloquer la `Gestion des données` et définir la `Classification par âge` à la plus haute catégorie possible peut aider à prévenir les erreurs courantes que les utilisateurs peuvent faire en utilisant CBHC. Cliquez [ici](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) pour plus d'informations sur la façon de modifier vos paramètres de Contrôle Parental. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre PC et insérez-la dans votre console Wii U. -1. Si vous ne l'avez pas encore fait, téléchargez maintenant le jeu Console Virtuelle DS de votre choix sur l'eShop. -1. Lancez l'Homebrew Launcher sur votre console comme [expliqué précédemment](browser-exploit). -1. Naviguez dans l'Homebrew Launcher et ouvrez l'application Haxchi. -1. Utilisez la croix directionnelle pour déplacer le curseur sur le jeu dans lequel vous souhaitez installer Haxchi et appuyez sur le bouton A pour l'installer. -1. Une fois l'installation terminée, votre console lancera le Menu Wii U. Vous verrez votre jeu remplacé par une icône Haxchi. -1. Exécutez le jeu DS modifié. Cela redémarrera la console et activera le CFW. -1. Exécutez à nouveau le jeu DS modifié et maintenez le bouton A pendant le lancement de celui-ci. Cela lancera l'Homebrew Launcher. -1. Naviguez dans l'Homebrew Launcher et ouvrez l'application CBHC. -1. Utilisez la croix directionnelle pour déplacer le curseur sur le jeu dans lequel vous avez précédemment installé Haxchi et appuyez sur le bouton A pour installer CBHC. -1. Une fois l'installation terminée, votre console lancera le Menu Wii U. -1. Redémarrez votre console. Si CBHC a correctement été installé, vous devriez voir un nouveau menu de démarrage. (CBHC n'est pas compatible avec le démarrage rapide. Si vous utilisez le Menu Démarrage Rapide, veuillez le désactiver.) -1. Utilisez la croix directionnelle pour naviguer vers `Autoboot: Disabled` et appuyez sur le bouton A jusqu'à ce que `Autoboot: System Menu` soit affiché. -1. Utilisez la croix directionnelle pour naviguer vers `Boot System Menu` et appuyez sur le bouton A. Cela lancera le Menu Wii U avec le CFW activé. -1. Votre console va alors maintenant démarrer en activant le CFW automatiquement à chaque redémarrage. -1. Vous pouvez maintenant rebrancher à nouveau tous les périphériques USB que vous aviez branchés avant de commencer le guide. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/cbhc/nand-backup.md b/translations/fr_FR/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index 88c93c556a2..00000000000 --- a/translations/fr_FR/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Faire une sauvegarde de la NAND {docsify-ignore} - -Au cas où quelque chose se passe mal dans le processus ultérieur et que votre Wii U se retrouve brickée, restaurer une sauvegarde de la NAND précédemment créée peut la faire fonctionner de nouveau. - -### Instructions {docsify-ignore} - -?> La NAND d'une Wii U fait (selon votre modèle) soit 8 Go soit 32 Go. Par conséquent, pour créer une sauvegarde complète de la NAND de votre console, votre carte SD doit être plus grande que la taille de votre NAND. Si vous n'avez pas une carte SD assez grande, vous pouvez sauter la partie `MLC` qui est optionnelle et inclut des fichiers de sauvegarde et des données de jeu et par conséquent, n'est pas nécessaire pour récupérer la plupart des types de bricks. - -?> La restauration d'une sauvegarde de la NAND sur la Wii U nécessite du matériel supplémentaire et des compétences en micro soudure.
Cependant, faire une sauvegarde de la NAND est **toujours** utile, donc ne l'ignorez pas.
Votre sauvegarde de la NAND est unique à votre système. Les sauvegardes des autres consoles **ne fonctionneront pas**. - -1. Naviguez à travers l'Homebrew Launcher et lancez l'application `Wii U NAND Dumper`. -1. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optionnel** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Appuyez sur le bouton A pour démarrer le processus de dumping. -1. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -1. Pour vous assurer de ne pas perdre les fichiers, copiez `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` et si vous avez choisi de faire une sauvegarde complète, `chaque fichier mlc.bin.part` sur votre ordinateur. -1. Supprimez les fichiers de votre carte SD pour libérer de l'espace. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/cbhc/sd-preparation.md b/translations/fr_FR/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index a60b55ba069..00000000000 --- a/translations/fr_FR/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## Préparation de la carte SD {docsify-ignore} - -Nous allons maintenant placer les fichiers du CFW requis et quelques fichiers homebrew supplémentaires sur la carte SD. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. Si votre carte SD n'est pas formatée en FAT32, utilisez [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) avec 32k (32768) en Taille d'unité d'allocation pour la formater. **Ne nommez pas** la carte SD en tant que `wiiu` ou cela causera des problèmes avec les homebrews. - -### Ce dont vous avez besoin {docsify-ignore} - -- La dernière version de [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Vous devrez télécharger le fichier `payload.zip`. -- La version 1.4 de [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Vous devrez télécharger la version 1.4 `homebrew_launcher.v1.4.zip` de The Homebrew Launcher. -- La dernière version de [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- La dernière version de [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Vous devrez télécharger le fichier `homebrew_launcher_channel.v2.1_fix.zip`. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La dernière version de l'[Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Vous devrez télécharger le fichier `wiiu-extracttosd.zip`. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- La dernière version de SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Remarque** Les fichiers info.json et manifest.install ne sont pas nécessaires pour le processus de modding et peuvent donc être supprimés. - -1. Insérez la carte SD de votre Wii U dans votre PC. -1. Créez un dossier appelé `install` à la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher_channel.v2.1_fix.zip` dans le dossier `install` que vous avez créé. -1. Copiez le contenu du fichier `haxchi.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `cbhc.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wup_installer_gx2.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `nanddumper.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wiiu-extracttosd.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher.v.1.4.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `savemii_mod.zip` vers la racine de votre carte SD. -1. Copiez le fichier `payload.elf` du fichier `payload.zip` vers le dossier `wiiu` de votre carte SD. ----------- - -### Disposition de la carte SD {docsify-ignore} - -
-Cliquez ici pour afficher la disposition finale de la carte SD. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Toutes les autres applications comme disc2app, nanddumper, etc. devraient être ici aussi) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fr_FR/docs/user-guide/cbhc/sidebar.md b/translations/fr_FR/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 156e265de6d..00000000000 --- a/translations/fr_FR/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Page d'accueil](../introduction) -- [Choisissez un CFW](../cfw-choice) -- [Choisissez votre jeu DS VC](ds-vc-choice) -- [Préparation de la carte SD](sd-preparation) -- [Exploit du navigateur](browser-exploit) -- [Faire une sauvegarde de la NAND](nand-backup) -- [Lancement du CFW](launching-cfw) -- [Installer l'Homebrew Channel](installing-hblc) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../donations) -- [À propos](../about) \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/cfw-choice.md b/translations/fr_FR/docs/user-guide/cfw-choice.md deleted file mode 100644 index 28f04bd5182..00000000000 --- a/translations/fr_FR/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choisissez le CFW que vous voulez ---- -?> Avant de commencer, assurez-vous de mettre à jour votre console Wii U vers le dernier firmware (5.5.5) si vous ne l'avez pas déjà fait. - -Il y a deux principaux custom firmwares : Haxchi/Coldboot Haxchi (généralement abrégé comme "CBHC"), ainsi que Mocha. - -Haxchi/CBHC sont tous deux injectés dans un jeu Console Virtuelle DS payant. Haxchi devra être démarré manuellement depuis le Menu Wii U pour démarrer le custom firmware, alors que CBHC démarre le custom firmware automatiquement pendant le démarrage de la console. Mocha est accessible via l'exploit du navigateur ou la méthode Indexiine, ce qui en fait le seul custom firmware gratuit. - -Le choix du custom firmware dépends de **votre** préférence. Il n'y a pas de bon ou de mauvais custom firmware, il est donc recommandé que vous vous sentiez libre de choisir celui qui se rapproche le plus de vos besoins ! - -## Haxchi - -- Nécessite un jeu Console Virtuelle DS acheté et installé depuis l'eShop. -- Peut être utilisé pour lancer le CFW directement à partir du Menu Wii U. -- Doit être relancé à partir du Menu Wii U à chaque redémarrage pour activer le custom firmware. -- Ses fonctionnalités peuvent être étendues en installant ColdbootHaxchi (CBHC) sur une installation existante de Haxchi. - -### [**Continuer avec Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installer CBHC incorrectement peut briquer votre Wii U ! Assurez-vous de respecter les règles suivantes lors de l'installation de CBHC :
- Le jeu DS doit être légitimement installé à partir de l'eShop !
- Ne formatez pas la console lorsque CBHC est installé !
- Ne supprimez pas le compte de l'utilisateur qui a acheté le jeu Console Virtuelle DS !
- Ne réinstallez pas le même jeu en utilisant WUP Installer ou depuis l'eShop !
- N'installez pas Haxchi par dessus CBHC ! (Votre console ne sera pas brickée mais provoquera un redémarrage en boucle ! Maintenez A au démarrage pour accéder au Homebrew Launcher et désinstaller CBHC.)
- Ne désinstallez pas le jeu Console Virtuelle DS sans [désinstaller correctement CBHC d'abord](uninstall-cbhc) !
- Ne déplacez pas le jeu Console Virtuelle DS sur un périphérique USB ! - -!> Enfreindre l'une des règles ci-dessus **peut** provoquer un brick de la console ! - -> Si vous craignez d'enfreindre l'une de ces règles lors de l'utilisation de CBHC, envisagez de mettre en place un contrôle parental pour votre utilisateur ! Bloquer la `Gestion des données` et définir la `Classification par âge` à la plus haute catégorie possible peut aider à prévenir les erreurs courantes que les utilisateurs peuvent faire en utilisant CBHC. Cliquez [ici](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) pour plus d'informations sur la façon de modifier vos paramètres de Contrôle Parental. - -- Nécessite un jeu Console Virtuelle DS acheté et installé depuis l'eShop. -- Lance automatiquement le custom firmware à chaque démarrage de la console. - -### [**Continuer avec CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Ne nécessite aucun jeu, et est donc gratuit. -- Doit être relancé à partir de l'exploit du navigateur Internet à chaque redémarrage pour activer le custom firmware. -- N'est pas compatible avec l'Homebrew Launcher Channel. -- Peut nécessiter une connexion Internet en fonction du point d'entrée que vous choisissez. - -### [**Continuer avec Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/fr_FR/docs/user-guide/haxchi/browser-exploit.md b/translations/fr_FR/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 444a3624ceb..00000000000 --- a/translations/fr_FR/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Exploit du navigateur {docsify-ignore} - -Pour installer le CFW, nous devons d'abord lancer le Homebrew Launcher à travers l'exploit du navigateur. Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre ordinateur et insérez-la dans votre console Wii U. -1. Lancez le navigateur Internet et allez sur le site web `wiiuexploit.xyz`. -1. Cliquez sur `Run Homebrew Launcher!`. Votre console devrait lancer l'Homebrew Launcher. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/haxchi/ds-vc-choice.md b/translations/fr_FR/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index 7bd74aaa4fe..00000000000 --- a/translations/fr_FR/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choisissez votre jeu DS VC - -La première chose à faire est de décider quel jeu Console Virtuelle DS ("VC" pour Virtual Console en anglais) vous allez acheter. -Notez que le jeu dans lequel vous aurez injecté Haxchi/CBHC ne sera plus jouable tant que vous n'aurez pas désinstallé Haxchi/CBHC et réinstallé le jeu depuis l'eShop. - -### Jeux DS VC compatibles - -?> Si vous avez une console de région européenne, il y a une chance que vous ayez déjà obtenu Programme d'Entraînement Cérébral du Dr Kawashima: Quel âge a votre cerveau ? gratuitement. Rendez-vous sur [l'eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) et vérifiez si vous avez obtenu le jeu. - -Si vous ne possédez aucun des jeux listés ci-dessous, Nous vous recommandons d'acheter Brain Age (Amérique du Nord) ou Programme d'entraînement cérébral du Dr Kawashima : Quel âge a votre cerveau ? (Europe) car il fait partie des jeux les moins chers et est un jeu auquel très peu de monde souhaite jouer. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Cérébrale Académie** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Programme d'Entraînement Cérébral du Dr Kawashima: Quel âge a votre cerveau ?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Programme d'Entraînement Cérébral du Dr Kawashima: Quel âge a votre cerveau ?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby : Le Pinceau du pouvoir** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby : Les souris attaquent** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi : Les Frères du temps** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokémon Donjon Mystère : Explorateurs du ciel** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/fr_FR/docs/user-guide/haxchi/installing-hblc.md b/translations/fr_FR/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index eb2a9103612..00000000000 --- a/translations/fr_FR/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installation de l'Homebrew Launcher Channel {docsify-ignore} - -Cette page installera l'Homebrew Launcher Channel en tant qu'application directement dans votre Menu Wii U pour un accès facile. - -### Instructions {docsify-ignore} - -?> Installer l'Homebrew Launcher Channel est facultatif car vous pouvez déjà le lancer en maintenant le bouton A enfoncé tout en lançant Haxchi. - -1. Allumez votre console. -1. Lancez le jeu Haxchi DS à partir du menu Wii U. Cela lancera le Menu Wii U avec le CFW activé. -1. Lancez à nouveau le jeu DS Haxchi en maintenant le bouton A. Cela lancera l'Homebrew Launcher. -1. Naviguez dans l'Homebrew Launcher et lancez l'application WUP Installer GX2. -1. Utilisez l'écran tactile pour sélectionner `Homebrew Launcher Channel`. Appuyez sur `Install` et confirmez avec `Yes`. -1. Sélectionnez la NAND comme destination de l'installation. Ceci installera l'Homebrew Launcher Channel sur le Menu Wii U. -1. Une fois le processus terminé, appuyez sur le bouton HOME jusqu'à ce que vous reveniez sur le Menu Wii U. -1. Vous verrez maintenant l'Homebrew Launcher Channel installé sur votre Menu Wii U. N'oubliez pas que vous devrez lancer un CFW à chaque redémarrage pour faire fonctionner cette application. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/haxchi/launching-cfw.md b/translations/fr_FR/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index 6a9fb25201b..00000000000 --- a/translations/fr_FR/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Lancement du CFW {docsify-ignore} - -Maintenant que vous avez votre sauvegarde de la NAND au cas où quelque chose se passerait mal plus tard, vous pouvez exécuter le CFW sur votre console. - -Contrairement aux consoles telles que la DSi, la Wii ou la 3DS, le CFW sur la Wii U est temporaire. Cela signifie que dès que votre console redémarre, vous perdrez le CFW et devrez suivre ces instructions à nouveau. Ceci peut être ignoré en installant CBHC sur une installation Haxchi CFW. - -### Instructions {docsify-ignore} - -?> Si l'installation échoue pour une raison quelconque, essayez de désinstaller et de retélécharger le jeu DS VC de l'eShop et assurez-vous qu'il est en cours d'installation sur la NAND. - -1. Sortez la carte SD de votre PC et insérez-la dans votre console Wii U. -1. Si vous ne l'avez pas déjà fait, téléchargez votre jeu DS VC à partir de l'eShop. -1. Lancez l'Homebrew Launcher sur votre console comme [expliqué précédemment](browser-exploit). -1. Naviguez dans l'Homebrew Launcher et ouvrez l'application Haxchi. -1. Utilisez la croix directionnelle pour déplacer le curseur sur le jeu dans lequel vous souhaitez installer Haxchi et appuyez sur le bouton A pour l'installer. -1. Une fois l'installation terminée, votre console lancera le Menu Wii U. Vous verrez votre jeu remplacé par une icône Haxchi. -1. Exécutez le jeu DS modifié. Cela redémarrera la console et activera le CFW. -1. Vous devrez exécuter votre jeu DS Haxchi à chaque redémarrage pour lancer le CFW. -1. Vous pouvez maintenant rebrancher à nouveau tous les périphériques USB que vous aviez branchés avant de commencer le guide. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/haxchi/nand-backup.md b/translations/fr_FR/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 5811bd5d086..00000000000 --- a/translations/fr_FR/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Faire une sauvegarde de la NAND {docsify-ignore} - -Au cas où quelque chose se passe mal dans le processus ultérieur et que votre Wii U se retrouve brickée, restaurer une sauvegarde de la NAND précédemment créée peut la faire fonctionner de nouveau. - -### Instructions {docsify-ignore} - -?> La NAND d'une Wii U fait (selon votre modèle) soit 8 Go soit 32 Go. Par conséquent, pour créer une sauvegarde complète de la NAND de votre console, votre carte SD doit être plus grande que la taille de votre NAND. Si vous n'avez pas une carte SD assez grande, vous pouvez sauter la partie `MLC` qui est optionnelle et inclut des fichiers de sauvegarde et des données de jeu et par conséquent, n'est pas nécessaire pour récupérer la plupart des types de bricks. - -?> La restauration d'une sauvegarde de la NAND sur la Wii U nécessite du matériel supplémentaire et des compétences en micro soudure.
Cependant, faire une sauvegarde de la NAND est **toujours** utile, donc ne l'ignorez pas.
Votre sauvegarde de la NAND est unique à votre système. Les sauvegardes des autres consoles **ne fonctionneront pas**. - -1. Naviguez à travers l'Homebrew Launcher et lancez l'application `Wii U NAND Dumper`. -1. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optionnel** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Appuyez sur le bouton A pour démarrer le processus de dumping. -1. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -1. Pour vous assurer de ne pas perdre les fichiers, copiez `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` et si vous avez choisi de faire une sauvegarde complète, `chaque fichier mlc.bin.part` sur votre ordinateur. -1. Supprimez les fichiers de votre carte SD pour libérer de l'espace. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/haxchi/sd-preparation.md b/translations/fr_FR/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index e3a76fde11c..00000000000 --- a/translations/fr_FR/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## Préparation de la carte SD {docsify-ignore} - -Nous allons maintenant placer les fichiers du CFW requis et quelques fichiers homebrew supplémentaires sur la carte SD. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. Si votre carte SD n'est pas formatée en FAT32, utilisez [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) avec 32k (32768) en Taille d'unité d'allocation pour la formater. **Ne nommez pas** la carte SD en tant que `wiiu` ou cela causera des problèmes avec les homebrews. - -### Ce dont vous avez besoin {docsify-ignore} - -- La dernière version de [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Vous devrez télécharger le fichier `payload.zip`. -- La version 1.4 de [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Vous devrez télécharger la version 1.4 `homebrew_launcher.v1.4.zip` de The Homebrew Launcher. -- La dernière version de [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- La dernière version de [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Vous devrez télécharger le fichier `homebrew_launcher_channel.v2.1_fix.zip`. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La dernière version de l'[Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Vous devrez télécharger le fichier `wiiu-extracttosd.zip`. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- La dernière version de SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Remarque** Les fichiers info.json et manifest.install ne sont pas nécessaires pour le processus de modding et peuvent donc être supprimés. - -1. Insérez la carte SD de votre Wii U dans votre PC. -1. Créez un dossier appelé `install` à la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher_channel.v2.1_fix.zip` dans le dossier `install` que vous avez créé. -1. Copiez le contenu du fichier `haxchi.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wup_installer_gx2.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `nanddumper.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wiiu-extracttosd.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher.v.1.4.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `savemii_mod.zip` vers la racine de votre carte SD. -1. Copiez le fichier `payload.elf` du fichier `payload.zip` vers le dossier `wiiu` de votre carte SD. ----------- - -### Disposition de la carte SD {docsify-ignore} - -
-Cliquez ici pour afficher la disposition finale de la carte SD. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Toutes les autres applications comme disc2app, nanddumper, etc. devraient être ici aussi) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fr_FR/docs/user-guide/haxchi/sidebar.md b/translations/fr_FR/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 73f18dfb671..00000000000 --- a/translations/fr_FR/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Page d'accueil](../introduction) -- [Choisissez un CFW](../cfw-choice) -- [Choisissez votre jeu DS VC](ds-vc-choice) -- [Préparation de la carte SD](sd-preparation) -- [Exploit du navigateur](browser-exploit) -- [Faire une sauvegarde de la NAND](nand-backup) -- [Lancement du CFW](launching-cfw) -- [Installer l'Homebrew Channel](installing-hblc) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../donations) -- [À propos](../about) \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/introduction.md b/translations/fr_FR/docs/user-guide/introduction.md deleted file mode 100644 index e454b8432b5..00000000000 --- a/translations/fr_FR/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Guide Hacks Wii U ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Veuillez lire **#faq-wiiu**, ainsi que notre page [Foire Aux Questions](faq) pour voir si votre question a déjà reçu une réponse. - -> Si vous appréciez ce guide, nous acceptons les [dons](donations). - -> Pour des guides complets sur les homebrew et les custom firmware pour d'autres périphériques, consultez [hacks.guide](https://hacks.guide). - -### Homebrew - -Les applications Homebrew sont des logiciels faits maison, créés par les utilisateurs et qui n'ont pas été autorisés par Nintendo. Cela peut inclure des outils d'édition de sauvegardes, des jeux, des émulateurs, et plus encore. - -Les Homebrews peuvent être exécutés sur votre Wii U tant que vous avez un moyen de mettre des fichiers sur une carte SD et que votre Wii U est mise à jour vers la dernière version pour votre région. - -### Custom Firmware - -Le Custom Firmware (également connu sous l'abréviation "CFW") vous permet d'utiliser des hacks plus avancés que les homebrews de type "userland" ne peuvent pas faire facilement. Par exemple, installer des mods de jeu en toute simplicité. Le CFW peut être configuré sur n'importe quelle console ayant la dernière version en date du logiciel système. - -### Homebrew & Usages du CFW - -Il vous permet, entre autres, de faire ce qui suit : - -- Utiliser des "ROM hacks" pour les jeux que vous possédez. -- Sauvegarder, modifier et restaurer les données de sauvegarde pour de nombreux jeux. -- Jouer à des jeux pour les anciennes consoles avec divers émulateurs, en utilisant RetroArch ou d'autres émulateurs autonomes. -- Jouer à des jeux hors région. -- Dumper vos disques de jeu Wii U dans un format qui peut être installé sur votre stockage Wii U interne ou externe. - - -### Objectif final - -Ce guide a pour but final de faire passer une Wii U de "non modifiée" à "modifiée avec un custom firmware". - -### Avant de commencer - -!> Avant de commencer le guide, vous devez connaître les risques du hacking de la Wii U : **CHAQUE** fois que vous modifiez votre console, il y a toujours la possibilité d'un brick **IRRÉCUPÉRABLE**. Ils sont rares mais restent une possibilité, alors assurez-vous de suivre **TOUTES** les instructions **À LA LETTRE!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> Vous aurez besoin de ce qui suit pour suivre ce tutoriel avec succès : -> -> - Une carte SD. -> - Un appareil tel qu'un ordinateur pour placer des fichiers sur la carte SD. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -Si tout se passe comme prévu, vous ne perdrez aucune donnée et finirez avec tout ce que vous aviez avant de commencer (jeux, NNID, les données de sauvegarde, etc seront conservés). - -Gardez votre console branchée tout au long du processus pour éviter une perte de données ou des dommages causés par une mise hors tension inattendue. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -Il est conseillé de lire l'intégralité du guide du début à la fin une ou plusieurs fois avant de commencer à suivre les étapes avec votre console. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/fr_FR/docs/user-guide/mocha/entrypoint-choice.md b/translations/fr_FR/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 0923521b79f..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choisissez un point d'entrée - -## Exploit en ligne - -- Nécessite une connexion Internet chaque fois que vous voulez lancer l'Homebrew Launcher. - -### [**Continuer avec l'exploit en ligne**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Nécessite une connexion Internet pour le processus d'installation, mais peut être utilisé hors ligne une fois installé. -- Nécessite que vous modifiiez un fichier système. - -### [**Continuer avec Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/fr_FR/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index 7daab0a32cf..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Exploit du navigateur {docsify-ignore} - -Pour installer le CFW, nous devons d'abord lancer le Homebrew Launcher à travers l'exploit du navigateur. Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre ordinateur et insérez-la dans votre console Wii U. -1. Lancez le navigateur Internet et allez sur le site web `wiiuexploit.xyz`. -1. Cliquez sur `Run Homebrew Launcher!`. Votre console devrait lancer l'Homebrew Launcher. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/fr_FR/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index 8c7d5d366ac..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Modding du navigateur Internet {docsify-ignore} - -Maintenant que vous avez votre sauvegarde de la NAND au cas où quelque chose se passerait mal plus tard, vous pouvez installer Indexiine sur votre console. - -?> Au cas où vous n'auriez pas réinséré votre carte SD dans votre Wii U après avoir copié votre sauvegarde de la NAND sur un ordinateur, faites-le maintenant. - - -### Instructions {docsify-ignore} - -1. Allumez votre Wii U. -1. Lancez le Navigateur Internet et ouvrez le site web `wiiuexploit.xyz`. -1. Cliquez sur `Run Homebrew Launcher!`. Votre console devrait lancer l'Homebrew Launcher. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. -1. Naviguez à travers l'Homebrew Launcher et lancez l'application `Indexiine Installer`. -1. Appuyez sur le bouton A pour installer Indexiine. -1. Une fois le processus terminé, fermez l'Homebrew Launcher pour revenir au Menu Wii U. - -L'Homebrew Launcher sera maintenant lancé chaque fois que vous lancerez le navigateur Internet même sans connexion Internet. Si vous voulez visiter un autre site web, ouvrez-le avant que Indexiine ne déclenche l'exploit. - -?> Au cas où vous voudriez désinstaller Indexiine, ouvrez la page [Désinstaller Indexiine](../../uninstall-indexiine) diff --git a/translations/fr_FR/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/fr_FR/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index b4d5c5e1c83..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Lancement du CFW {docsify-ignore} - -Contrairement aux consoles telles que la DSi, la Wii ou la 3DS, le CFW sur la Wii U est temporaire. Cela signifie que dès que votre console redémarre, vous perdrez le CFW et devrez suivre ces instructions à nouveau. Ceci peut être ignoré en installant CBHC sur une installation Haxchi CFW. - -### Instructions {docsify-ignore} - -1. Lancez l'Homebrew Launcher en lançant le navigateur Internet. -1. Naviguez dans l'Homebrew Launcher et ouvrez l'application Mocha CFW. -1. Il vous ramènera dans l'Homebrew Launcher et activera le CFW. -1. Vous devrez refaire ces étapes à chaque redémarrage pour lancer le CFW. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/fr_FR/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 326b805b21a..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Faire une sauvegarde de la NAND {docsify-ignore} - -Au cas où quelque chose se passe mal dans le processus ultérieur et que votre Wii U se retrouve brickée, restaurer une sauvegarde de la NAND précédemment créée peut la faire fonctionner de nouveau. - -### Instructions {docsify-ignore} - -?> La NAND d'une Wii U fait (selon votre modèle) soit 8 Go soit 32 Go. Par conséquent, pour créer une sauvegarde complète de la NAND de votre console, votre carte SD doit être plus grande que la taille de votre NAND. Si vous n'avez pas une carte SD assez grande, vous pouvez sauter la partie `MLC` qui est optionnelle et inclut des fichiers de sauvegarde et des données de jeu et par conséquent, n'est pas nécessaire pour récupérer la plupart des types de bricks. - -?> La restauration d'une sauvegarde de la NAND sur la Wii U nécessite du matériel supplémentaire et des compétences en micro soudure.
Cependant, faire une sauvegarde de la NAND est **toujours** utile, donc ne l'ignorez pas.
Votre sauvegarde de la NAND est unique à votre système. Les sauvegardes des autres consoles **ne fonctionneront pas**. - -1. Naviguez à travers l'Homebrew Launcher et lancez l'application `Wii U NAND Dumper`. -1. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optionnel** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Appuyez sur le bouton A pour démarrer le processus de dumping. -1. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -1. Pour vous assurer de ne pas perdre les fichiers, copiez `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` et si vous avez choisi de faire une sauvegarde complète, `chaque fichier mlc.bin.part` sur votre ordinateur. -1. Supprimez les fichiers de votre carte SD pour libérer de l'espace. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/fr_FR/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index 6e9c70a6560..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## Préparation de la carte SD {docsify-ignore} - -Nous allons maintenant placer les fichiers du CFW requis et quelques fichiers homebrew supplémentaires sur la carte SD. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. Si votre carte SD n'est pas formatée en FAT32, utilisez [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) avec 32k (32768) en Taille d'unité d'allocation pour la formater. **Ne nommez pas** la carte SD en tant que `wiiu` ou cela causera des problèmes avec les homebrews. - -### Ce dont vous avez besoin {docsify-ignore} - -- Le fichier de configuration de Mocha. -- La dernière version de [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Vous devrez télécharger le fichier `payload.zip`. -- La version 1.4 de [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Vous devrez télécharger la version 1.4 `homebrew_launcher.v1.4.zip` de The Homebrew Launcher. -- La dernière version de [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La dernière version de l'[Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Vous devrez télécharger le fichier `wiiu-extracttosd.zip`. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- La dernière version de SaveMii Mod. -- La dernière version de [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Remarque** Les fichiers info.json et manifest.install ne sont pas nécessaires pour le processus de modding et peuvent donc être supprimés. - -1. Insérez la carte SD de votre Wii U dans votre PC. -1. Copiez le contenu du fichier `wup_installer_gx2.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `nanddumper.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wiiu-extracttosd.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher.v.1.4.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `mocha.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `indexiine-installer.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `savemii_mod.zip` vers la racine de votre carte SD. -1. Copiez le fichier `config.ini` dans le dossier `/wiiu/apps/mocha` de votre carte SD. -1. Copiez le fichier `payload.elf` du fichier `payload.zip` vers le dossier `wiiu` de votre carte SD. ----------- - -### Disposition de la carte SD {docsify-ignore} - -
-Cliquez ici pour afficher la disposition finale de la carte SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Toutes les autres applications comme disc2app, nanddumper, etc. devraient être ici aussi) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fr_FR/docs/user-guide/mocha/indexiine/sidebar.md b/translations/fr_FR/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index bd739b54f83..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Page d'accueil](../../introduction) -- [Choisissez un CFW](../../cfw-choice) -- [Choisissez un point d'entrée](../entrypoint-choice) -- [Préparation de la carte SD](sd-preparation) -- [Exploit du navigateur](browser-exploit) -- [Faire une sauvegarde de la NAND](nand-backup) -- [Modification du navigateur Internet](browser-modding) -- [Lancement du CFW](launching-cfw) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../../donations) -- [À propos](../../about) \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/fr_FR/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index f92b081ba29..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Exploit en ligne - -## Exploit du navigateur {docsify-ignore} - -Pour installer le CFW, nous devons d'abord lancer le Homebrew Launcher à travers l'exploit du navigateur. Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre ordinateur et insérez-la dans votre console Wii U. -1. Lancez le navigateur Internet et allez sur le site web `wiiuexploit.xyz`. -1. Cliquez sur `Run Homebrew Launcher!`. Votre console devrait lancer l'Homebrew Launcher. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/fr_FR/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 92160e58d23..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Exploit en ligne - -## Lancement du CFW {docsify-ignore} - -Maintenant que vous avez votre sauvegarde de la NAND au cas où quelque chose se passerait mal plus tard, vous pouvez exécuter le CFW sur votre console. - -Contrairement aux consoles telles que la DSi, la Wii ou la 3DS, le CFW sur la Wii U est temporaire. Cela signifie que dès que votre console redémarre, vous perdrez le CFW et devrez suivre ces instructions à nouveau. Ceci peut être ignoré en installant CBHC sur une installation Haxchi CFW. - -### Instructions {docsify-ignore} - -1. Sortez la carte SD de votre PC et insérez-la dans votre console Wii U. -1. Lancez l'Homebrew Launcher sur votre console comme [expliqué précédemment](browser-exploit). -1. Naviguez dans l'Homebrew Launcher et ouvrez l'application Mocha CFW. -1. Il vous ramènera dans l'Homebrew Launcher et activera le CFW. -1. Vous devrez refaire ces étapes à chaque redémarrage pour lancer le CFW. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/fr_FR/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 1c6f9546243..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Exploit en ligne - -## Faire une sauvegarde de la NAND {docsify-ignore} - -Au cas où quelque chose se passe mal dans le processus ultérieur et que votre Wii U se retrouve brickée, restaurer une sauvegarde de la NAND précédemment créée peut la faire fonctionner de nouveau. - -### Instructions {docsify-ignore} - -?> La NAND d'une Wii U fait (selon votre modèle) soit 8 Go soit 32 Go. Par conséquent, pour créer une sauvegarde complète de la NAND de votre console, votre carte SD doit être plus grande que la taille de votre NAND. Si vous n'avez pas une carte SD assez grande, vous pouvez sauter la partie `MLC` qui est optionnelle et inclut des fichiers de sauvegarde et des données de jeu et par conséquent, n'est pas nécessaire pour récupérer la plupart des types de bricks. - -?> La restauration d'une sauvegarde de la NAND sur la Wii U nécessite du matériel supplémentaire et des compétences en micro soudure.
Cependant, faire une sauvegarde de la NAND est **toujours** utile, donc ne l'ignorez pas.
Votre sauvegarde de la NAND est unique à votre système. Les sauvegardes des autres consoles **ne fonctionneront pas**. - -1. Naviguez à travers l'Homebrew Launcher et lancez l'application `Wii U NAND Dumper`. -1. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optionnel** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Appuyez sur le bouton A pour démarrer le processus de dumping. -1. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -1. Pour vous assurer de ne pas perdre les fichiers, copiez `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` et si vous avez choisi de faire une sauvegarde complète, `chaque fichier mlc.bin.part` sur votre ordinateur. -1. Supprimez les fichiers de votre carte SD pour libérer de l'espace. \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/fr_FR/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index cecec838dc5..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Exploit en ligne - -## Préparation de la carte SD {docsify-ignore} - -Nous allons maintenant placer les fichiers du CFW requis et quelques fichiers homebrew supplémentaires sur la carte SD. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. Si votre carte SD n'est pas formatée en FAT32, utilisez [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) avec 32k (32768) en taille d'unité d'Allocation pour la formater. **Ne nommez pas** la carte SD en tant que `wiiu` ou cela causera des problèmes avec les homebrews. - -### Ce dont vous avez besoin {docsify-ignore} - -- Le fichier de configuration de Mocha. -- La dernière version de [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Vous devrez télécharger le fichier `payload.zip`. -- La version 1.4 de [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Vous devrez télécharger la version 1.4 `homebrew_launcher.v1.4.zip` de The Homebrew Launcher. -- La dernière version de [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La dernière version de l'[Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Vous devrez télécharger le fichier `wiiu-extracttosd.zip`. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- La dernière version de SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Remarque** Les fichiers info.json et manifest.install ne sont pas nécessaires pour le processus de modding et peuvent donc être supprimés. - -1. Insérez la carte SD de votre Wii U dans votre PC. -1. Copiez le contenu du fichier `wup_installer_gx2.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `nanddumper.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `wiiu-extracttosd.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `homebrew_launcher.v.1.4.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `mocha.zip` vers la racine de votre carte SD. -1. Copiez le contenu du fichier `savemii_mod.zip` vers la racine de votre carte SD. -1. Copiez le fichier `config.ini` dans le dossier `/wiiu/apps/mocha` de votre carte SD. -1. Copiez le fichier `payload.elf` du fichier `payload.zip` vers le dossier `wiiu` de votre carte SD. ----------- - -### Disposition de la carte SD {docsify-ignore} - -
-Cliquez ici pour afficher la disposition finale de la carte SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Toutes les autres applications comme disc2app, nanddumper, etc. devraient être ici aussi) - ┗ 📜payload.elf -``` - -
diff --git a/translations/fr_FR/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/fr_FR/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index dbb7073de17..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Exploit en ligne** -- [Page d'accueil](../../introduction) -- [Choisissez un CFW](../../cfw-choice) -- [Choisissez un point d'entrée](../entrypoint-choice) -- [Préparation de la carte SD](sd-preparation) -- [Exploit du navigateur](browser-exploit) -- [Faire une sauvegarde de la NAND](nand-backup) -- [Lancement du CFW](launching-cfw) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../../donations) -- [À propos](../../about) \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/mocha/sidebar.md b/translations/fr_FR/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index b09805400c8..00000000000 --- a/translations/fr_FR/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Page d'accueil](../introduction) -- [Choisissez un CFW](../cfw-choice) -- [Choisissez un point d'entrée](entrypoint-choice) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../donations) -- [À propos](../about) \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/tiramisu/autoboot.md b/translations/fr_FR/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index 89bb2585c39..00000000000 --- a/translations/fr_FR/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autoboot de Tiramisu - -Actuellement, chaque fois que vous voudrez lancer Tiramisu, vous devrez lancer l'application Informations sur la santé et la sécurité. Si vous souhaitez démarrer automatiquement dans Tiramisu au démarrage de la console, vous pouvez démarrer automatiquement l'application Informations sur la santé et la sécurité. - -### Instructions - -1. Allumez la console pour démarrer sur le Menu Wii U, lancez l'application Informations sur la santé et la sécurité et maintenez le bouton X enfoncé pour ouvrir le menu Environment Loader. -1. Naviguez dans la liste à l'aide de la croix directionnelle et sélectionnez l'environnement « installer » `` , appuyez sur A pour le lancer. -1. Appuyez sur A pour sélectionner `Check`. -1. Sélectionnez `Boot options`. -1. Vous serez invité à choisir si vous souhaitez modifier le titre qui sera lancé lors du démarrage de la console. Appuyez sur A pour sélectionner `Switch to PayloadLoader`. -1. Une fois le processus terminé, appuyez sur A pour éteindre la console. -1. Le PayloadLoader sera maintenant lancé automatiquement à chaque démarrage de la console. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Naviguez dans la liste en utilisant la croix directionnelle pour survoler le titre que vous voulez démarrer automatiquement, puis appuyez sur le bouton Y pour définir le titre qui sera lancé automatiquement au démarrage de la console. - - Appuyez sur A pour lancer le titre sélectionné. - diff --git a/translations/fr_FR/docs/user-guide/tiramisu/browser-exploit.md b/translations/fr_FR/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index 264fa5137b3..00000000000 --- a/translations/fr_FR/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Exploit du navigateur - -Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions - -1. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. -1. Lancez le navigateur Internet et allez sur le site web `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/fr_FR/docs/user-guide/tiramisu/finalizing-setup.md b/translations/fr_FR/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 73bbb5489f1..00000000000 --- a/translations/fr_FR/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Allumez votre Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/fr_FR/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/fr_FR/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index e86da4de9b6..00000000000 --- a/translations/fr_FR/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Sortez la carte SD de votre PC et insérez-la dans votre console Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Naviguez dans la liste à l'aide de la croix directionnelle et sélectionnez l'environnement « installer » `` , appuyez sur A pour le lancer. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/fr_FR/docs/user-guide/tiramisu/nand-backup.md b/translations/fr_FR/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index d75d2c07bd4..00000000000 --- a/translations/fr_FR/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Faire une sauvegarde de la NAND - -Au cas où quelque chose se passe mal dans le processus ultérieur et que votre Wii U se retrouve brickée, restaurer une sauvegarde de la NAND précédemment créée peut la faire fonctionner de nouveau. - -### Instructions - -?> La NAND d'une Wii U fait (selon votre modèle) soit 8 Go soit 32 Go. Par conséquent, pour créer une sauvegarde complète de la NAND de votre console, votre carte SD doit être plus grande que la taille de votre NAND. Si vous n'avez pas une carte SD assez grande, vous pouvez sauter la partie `MLC` qui est optionnelle et inclut des fichiers de sauvegarde et des données de jeu et par conséquent, n'est pas nécessaire pour récupérer la plupart des types de bricks. - -?> La restauration d'une sauvegarde de la NAND sur la Wii U nécessite du matériel supplémentaire et des compétences en micro soudure.
Cependant, faire une sauvegarde de la NAND est **toujours** utile, donc ne l'ignorez pas.
Votre sauvegarde de la NAND est unique à votre système. Les sauvegardes des autres consoles **ne fonctionneront pas**. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optionnel** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Appuyez sur le bouton A pour démarrer le processus de dumping. -1. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Supprimez les fichiers de votre carte SD pour libérer de l'espace. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/fr_FR/docs/user-guide/tiramisu/sd-preparation.md b/translations/fr_FR/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 13547c8fda0..00000000000 --- a/translations/fr_FR/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Préparation de la carte SD - -Nous allons maintenant placer les fichiers du CFW requis et quelques fichiers homebrew supplémentaires sur la carte SD. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. Si votre carte SD n'est pas formatée en FAT32, utilisez [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) avec 32k (32768) en Taille d'unité d'allocation pour la formater.
**Ne nommez pas** la carte SD en tant que `wiiu` ou cela causera des problèmes avec les homebrews. - -?> **Si vous avez une ancienne installation existante d'un CFW**
Pour les utilisateurs de **CBHC** : allez à la page [Désinstaller CBHC](../uninstall-cbhc) pour désinstaller CBHC.
Pour les utilisateurs de **Haxchi** : désinstallez l'application Haxchi depuis le menu de Gestion des données dans l'application Paramètres de la console.
Pour les utilisateurs de **Mocha CFW (Indexiine)** : allez à la page [Désinstaller Indexiine](../uninstall-indexiine) pour désinstaller Indexiine.
Pour les utilisateurs de **Mocha CFW (Exploit en ligne)** : vous n'avez rien d'autre à faire avant de suivre ce guide. - -### Ce dont vous avez besoin - -- Les derniers fichiers de [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insérez la carte SD de votre Wii U dans votre PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### Disposition de la carte SD {docsify-ignore} - -
-Cliquez ici pour afficher la disposition finale de la carte SD. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/fr_FR/docs/user-guide/tiramisu/sidebar.md b/translations/fr_FR/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 3b36d69e7e4..00000000000 --- a/translations/fr_FR/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Page d'accueil](../introduction) -- [Préparation de la carte SD](sd-preparation) -- [Exploit du navigateur](browser-exploit) -- [Faire une sauvegarde de la NAND](nand-backup) -- [Installation du PayloadLoader](installing-payloadloader) -- [Autoboot de Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../donations) -- [À propos](../about) diff --git a/translations/fr_FR/docs/user-guide/vwii/browser-exploit.md b/translations/fr_FR/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 95463f36485..00000000000 --- a/translations/fr_FR/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Assurez-vous que votre Wii U a accès à Internet pour cette étape. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - Si votre Wii U reste coincée sur un écran blanc ou gelé, attendez quelques secondes. Si rien ne se passe, redémarrez la console, [réinitialisez les données de sauvegarde du navigateur](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) et réessayez. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/fr_FR/docs/user-guide/vwii/finalizing-setup.md b/translations/fr_FR/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/fr_FR/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/fr_FR/docs/user-guide/vwii/installing-cioses.md b/translations/fr_FR/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index 14afe26b3c7..00000000000 --- a/translations/fr_FR/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installation des cIOS - -1. Allumez votre Wii U et lancez la vWii. -2. Lancez The Homebrew Channel. -3. Lancez d2x cIOS Installer. -4. Faites en sorte que ce qui suit soit identique à ce qui est affiché sur votre console : - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Faites en sorte que ce qui suit soit identique à ce qui est affiché sur votre console : - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Faites en sorte que ce qui suit soit identique à ce qui est affiché sur votre console : - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/fr_FR/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/fr_FR/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index 22a34a80ca7..00000000000 --- a/translations/fr_FR/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installer l'Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/fr_FR/docs/user-guide/vwii/nand-backup.md b/translations/fr_FR/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index d8a807fe9e6..00000000000 --- a/translations/fr_FR/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Sauvegarde de la NAND - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Appuyez sur le bouton A pour démarrer le processus de dumping. -4. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Supprimez les fichiers de votre carte SD pour libérer de l'espace. -7. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. diff --git a/translations/fr_FR/docs/user-guide/vwii/patching-ios80.md b/translations/fr_FR/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 5c662f40e92..00000000000 --- a/translations/fr_FR/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Lancez Patched IOS 80 Installer for vWii. -2. Lisez l'écran d'avertissement et attendez 30 secondes. -3. Appuyez sur n'importe quel bouton pour installer. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/fr_FR/docs/user-guide/vwii/sd-preparation.md b/translations/fr_FR/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index d6d7b300c0c..00000000000 --- a/translations/fr_FR/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -Cette page vous guidera tout au long du processus de modding de votre vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### Ce dont vous avez besoin - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insérez la carte SD de votre Wii U dans votre PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. diff --git a/translations/fr_FR/docs/user-guide/vwii/sidebar.md b/translations/fr_FR/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index f49c0564ba2..00000000000 --- a/translations/fr_FR/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**Modding de la vWii** -- [Page d'accueil](../introduction) -- [Modding vWii](vwii-modding) -- **Liens** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduire](https://icongr.am/material/translate.svg?color=808080&size=16)Traduire](https://hacks-guide.crowdin.com/u/projects/10) -- [Faire un don](../donations) -- [À propos](../about) diff --git a/translations/fr_FR/docs/user-guide/vwii/vwii-modding.md b/translations/fr_FR/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/fr_FR/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/fr_FR/docs/vwii/vwii-modding.md b/translations/fr_FR/docs/vwii/vwii-modding.md deleted file mode 100644 index 912550d451d..00000000000 --- a/translations/fr_FR/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# Guide de modding de la vWii ---- -Cette page vous guidera tout au long du processus de modding de votre vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Remarque** Votre carte SD devra être formatée en FAT32. Si votre carte SD n'est pas formatée en FAT32, utilisez [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) avec 32k (32768) en taille d'unité d'Allocation pour la formater. **Ne nommez pas** la carte SD en tant que `wiiu` ou cela causera des problèmes avec les homebrews. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### Ce dont vous avez besoin {docsify-ignore} - -- Les derniers fichiers de [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- Les vWii cIOS apps. - -### SD Preparations {docsify-ignore} - -1. Insérez la carte SD de votre Wii U dans votre PC. -1. Copiez le dossier `apps` du fichier Patched_IOS80_Installer_for_vWii.zip vers la racine de votre carte SD. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. - -### Sauvegarde de la NAND - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Utilisez la croix directionnelle du Wii U GamePad pour entrer la configuration suivante : - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optionnel** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Appuyez sur le bouton A pour démarrer le processus de dumping. -1. Une fois le processus terminé, éteignez votre Wii U, retirez votre carte SD de la Wii U et insérez-la dans votre PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Supprimez les fichiers de votre carte SD pour libérer de l'espace. -1. Retirez la carte SD de votre ordinateur et branchez-la sur votre console Wii U. - -### Installer l'Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installation des cIOS - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Allumez votre Wii U et lancez la vWii. -1. Lancez The Homebrew Channel. -1. Lancez d2x cIOS Installer. -1. Faites en sorte que ce qui suit soit identique à ce qui est affiché sur votre console: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Appuyez sur le bouton `A` pour installer. -1. Faites en sorte que ce qui suit soit identique à ce qui est affiché sur votre console: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Appuyez sur le bouton `A` pour installer. -1. Faites en sorte que ce qui suit soit identique à ce qui est affiché sur votre console: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Appuyez sur le bouton `A` pour installer. -1. Appuyez sur le bouton `B` pour quitter. - -### Patching de l'IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Lancez Patched IOS 80 Installer for vWii. -1. Lisez l'écran d'avertissement et attendez 30 secondes. -1. Appuyez sur n'importe quel bouton pour installer. -1. Attendez que la console affiche IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/he_IL/docs/extras/about.md b/translations/he_IL/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/he_IL/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/he_IL/docs/extras/block-updates.md b/translations/he_IL/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/he_IL/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/he_IL/docs/extras/configurable-payload.md b/translations/he_IL/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/he_IL/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/he_IL/docs/extras/donations.md b/translations/he_IL/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/he_IL/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/he_IL/docs/extras/dump-games.md b/translations/he_IL/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/he_IL/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/he_IL/docs/extras/dump-wii-games.md b/translations/he_IL/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/he_IL/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/he_IL/docs/extras/faq.md b/translations/he_IL/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/he_IL/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/he_IL/docs/extras/find-wiiu-ip-address.md b/translations/he_IL/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/he_IL/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/he_IL/docs/extras/unblock-updates.md b/translations/he_IL/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/he_IL/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/he_IL/docs/extras/uninstall-cbhc.md b/translations/he_IL/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/he_IL/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/he_IL/docs/extras/uninstall-indexiine.md b/translations/he_IL/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/he_IL/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/he_IL/docs/extras/uninstall-payloadloader.md b/translations/he_IL/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/he_IL/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/he_IL/docs/privacy/privacy-policy.md b/translations/he_IL/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/he_IL/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/he_IL/docs/sidebar.md b/translations/he_IL/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/he_IL/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/he_IL/docs/troubleshooting/common-issues-fixes.md b/translations/he_IL/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/he_IL/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/he_IL/docs/troubleshooting/fix-errcode-112-1037.md b/translations/he_IL/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/he_IL/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/he_IL/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/he_IL/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/he_IL/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/he_IL/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/he_IL/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/he_IL/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/he_IL/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/he_IL/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/he_IL/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/he_IL/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/he_IL/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/he_IL/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/he_IL/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/cbhc/nand-backup.md b/translations/he_IL/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/he_IL/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/he_IL/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/he_IL/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/he_IL/docs/user-guide/archive/cbhc/sidebar.md b/translations/he_IL/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/he_IL/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/cfw-choice.md b/translations/he_IL/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/he_IL/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/he_IL/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/he_IL/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/he_IL/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/he_IL/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/he_IL/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/he_IL/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/he_IL/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/he_IL/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/he_IL/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/he_IL/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/haxchi/nand-backup.md b/translations/he_IL/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/he_IL/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/he_IL/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/he_IL/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/he_IL/docs/user-guide/archive/haxchi/sidebar.md b/translations/he_IL/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/he_IL/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/he_IL/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/he_IL/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/he_IL/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/he_IL/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/he_IL/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/he_IL/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/he_IL/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/mocha/sidebar.md b/translations/he_IL/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/he_IL/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/sidebar.md b/translations/he_IL/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/he_IL/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/he_IL/docs/user-guide/archive/tiramisu/autoboot.md b/translations/he_IL/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/he_IL/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/he_IL/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/he_IL/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/he_IL/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/he_IL/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/he_IL/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/he_IL/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/he_IL/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/he_IL/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/he_IL/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/he_IL/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/he_IL/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/he_IL/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/he_IL/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/he_IL/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/he_IL/docs/user-guide/archive/tiramisu/sidebar.md b/translations/he_IL/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/he_IL/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/he_IL/docs/user-guide/archive/vwii/browser-exploit.md b/translations/he_IL/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/he_IL/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/he_IL/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/he_IL/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/he_IL/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/he_IL/docs/user-guide/archive/vwii/installing-cioses.md b/translations/he_IL/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/he_IL/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/he_IL/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/he_IL/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/he_IL/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/he_IL/docs/user-guide/archive/vwii/nand-backup.md b/translations/he_IL/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/he_IL/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/he_IL/docs/user-guide/archive/vwii/patching-ios80.md b/translations/he_IL/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/he_IL/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/he_IL/docs/user-guide/archive/vwii/sd-preparation.md b/translations/he_IL/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/he_IL/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/he_IL/docs/user-guide/archive/vwii/sidebar.md b/translations/he_IL/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/he_IL/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/he_IL/docs/user-guide/aroma/autoboot.md b/translations/he_IL/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/he_IL/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/he_IL/docs/user-guide/aroma/browser-exploit.md b/translations/he_IL/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/he_IL/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/he_IL/docs/user-guide/aroma/finalizing-setup.md b/translations/he_IL/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/he_IL/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/he_IL/docs/user-guide/aroma/getting-started.md b/translations/he_IL/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/he_IL/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/he_IL/docs/user-guide/aroma/installing-payloadloader.md b/translations/he_IL/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/he_IL/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/he_IL/docs/user-guide/aroma/nand-backup.md b/translations/he_IL/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/he_IL/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/he_IL/docs/user-guide/aroma/sd-preparation.md b/translations/he_IL/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/he_IL/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/he_IL/docs/user-guide/aroma/sidebar.md b/translations/he_IL/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/he_IL/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/he_IL/docs/user-guide/cbhc/browser-exploit.md b/translations/he_IL/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/he_IL/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/cbhc/ds-vc-choice.md b/translations/he_IL/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/he_IL/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/he_IL/docs/user-guide/cbhc/installing-hblc.md b/translations/he_IL/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/he_IL/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/cbhc/launching-cfw.md b/translations/he_IL/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/he_IL/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/cbhc/nand-backup.md b/translations/he_IL/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/he_IL/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/cbhc/sd-preparation.md b/translations/he_IL/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/he_IL/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/he_IL/docs/user-guide/cbhc/sidebar.md b/translations/he_IL/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/he_IL/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/cfw-choice.md b/translations/he_IL/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/he_IL/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/he_IL/docs/user-guide/haxchi/browser-exploit.md b/translations/he_IL/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/he_IL/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/haxchi/ds-vc-choice.md b/translations/he_IL/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/he_IL/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/he_IL/docs/user-guide/haxchi/installing-hblc.md b/translations/he_IL/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/he_IL/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/haxchi/launching-cfw.md b/translations/he_IL/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/he_IL/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/haxchi/nand-backup.md b/translations/he_IL/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/he_IL/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/haxchi/sd-preparation.md b/translations/he_IL/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/he_IL/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/he_IL/docs/user-guide/haxchi/sidebar.md b/translations/he_IL/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/he_IL/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/introduction.md b/translations/he_IL/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/he_IL/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/he_IL/docs/user-guide/mocha/entrypoint-choice.md b/translations/he_IL/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/he_IL/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/he_IL/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/he_IL/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/he_IL/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/he_IL/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/he_IL/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/he_IL/docs/user-guide/mocha/indexiine/sidebar.md b/translations/he_IL/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/he_IL/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/he_IL/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/he_IL/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/he_IL/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/he_IL/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/he_IL/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/mocha/sidebar.md b/translations/he_IL/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/he_IL/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/tiramisu/autoboot.md b/translations/he_IL/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/he_IL/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/he_IL/docs/user-guide/tiramisu/browser-exploit.md b/translations/he_IL/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/he_IL/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/he_IL/docs/user-guide/tiramisu/finalizing-setup.md b/translations/he_IL/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/he_IL/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/he_IL/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/he_IL/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/he_IL/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/he_IL/docs/user-guide/tiramisu/nand-backup.md b/translations/he_IL/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/he_IL/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/he_IL/docs/user-guide/tiramisu/sd-preparation.md b/translations/he_IL/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/he_IL/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/he_IL/docs/user-guide/tiramisu/sidebar.md b/translations/he_IL/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/he_IL/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/he_IL/docs/user-guide/vwii/browser-exploit.md b/translations/he_IL/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/he_IL/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/he_IL/docs/user-guide/vwii/finalizing-setup.md b/translations/he_IL/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/he_IL/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/he_IL/docs/user-guide/vwii/installing-cioses.md b/translations/he_IL/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/he_IL/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/he_IL/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/he_IL/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/he_IL/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/he_IL/docs/user-guide/vwii/nand-backup.md b/translations/he_IL/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/he_IL/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/he_IL/docs/user-guide/vwii/patching-ios80.md b/translations/he_IL/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/he_IL/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/he_IL/docs/user-guide/vwii/sd-preparation.md b/translations/he_IL/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/he_IL/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/he_IL/docs/user-guide/vwii/sidebar.md b/translations/he_IL/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/he_IL/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/he_IL/docs/user-guide/vwii/vwii-modding.md b/translations/he_IL/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/he_IL/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/he_IL/docs/vwii/vwii-modding.md b/translations/he_IL/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/he_IL/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/hr_HR/docs/extras/about.md b/translations/hr_HR/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/hr_HR/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/hr_HR/docs/extras/block-updates.md b/translations/hr_HR/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/hr_HR/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/hr_HR/docs/extras/configurable-payload.md b/translations/hr_HR/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/hr_HR/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/hr_HR/docs/extras/donations.md b/translations/hr_HR/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/hr_HR/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/hr_HR/docs/extras/dump-games.md b/translations/hr_HR/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/hr_HR/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/hr_HR/docs/extras/dump-wii-games.md b/translations/hr_HR/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/hr_HR/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/hr_HR/docs/extras/faq.md b/translations/hr_HR/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/hr_HR/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/hr_HR/docs/extras/find-wiiu-ip-address.md b/translations/hr_HR/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/hr_HR/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/hr_HR/docs/extras/unblock-updates.md b/translations/hr_HR/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/hr_HR/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/hr_HR/docs/extras/uninstall-cbhc.md b/translations/hr_HR/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/hr_HR/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/hr_HR/docs/extras/uninstall-indexiine.md b/translations/hr_HR/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/hr_HR/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/hr_HR/docs/extras/uninstall-payloadloader.md b/translations/hr_HR/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/hr_HR/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/hr_HR/docs/privacy/privacy-policy.md b/translations/hr_HR/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/hr_HR/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/hr_HR/docs/sidebar.md b/translations/hr_HR/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/hr_HR/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/hr_HR/docs/troubleshooting/common-issues-fixes.md b/translations/hr_HR/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/hr_HR/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/hr_HR/docs/troubleshooting/fix-errcode-112-1037.md b/translations/hr_HR/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/hr_HR/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/hr_HR/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/hr_HR/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/hr_HR/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/hr_HR/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/hr_HR/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/hr_HR/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/hr_HR/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/hr_HR/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/hr_HR/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/cbhc/nand-backup.md b/translations/hr_HR/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/hr_HR/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hr_HR/docs/user-guide/archive/cbhc/sidebar.md b/translations/hr_HR/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/cfw-choice.md b/translations/hr_HR/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/hr_HR/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/hr_HR/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/hr_HR/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/hr_HR/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/hr_HR/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/hr_HR/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/haxchi/nand-backup.md b/translations/hr_HR/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/hr_HR/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hr_HR/docs/user-guide/archive/haxchi/sidebar.md b/translations/hr_HR/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/hr_HR/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/mocha/sidebar.md b/translations/hr_HR/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/sidebar.md b/translations/hr_HR/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/hr_HR/docs/user-guide/archive/tiramisu/autoboot.md b/translations/hr_HR/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/hr_HR/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/hr_HR/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/hr_HR/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/hr_HR/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/hr_HR/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/hr_HR/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/hr_HR/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/hr_HR/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/hr_HR/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/hr_HR/docs/user-guide/archive/tiramisu/sidebar.md b/translations/hr_HR/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/hr_HR/docs/user-guide/archive/vwii/browser-exploit.md b/translations/hr_HR/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/hr_HR/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/hr_HR/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/hr_HR/docs/user-guide/archive/vwii/installing-cioses.md b/translations/hr_HR/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/hr_HR/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/hr_HR/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/hr_HR/docs/user-guide/archive/vwii/nand-backup.md b/translations/hr_HR/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/hr_HR/docs/user-guide/archive/vwii/patching-ios80.md b/translations/hr_HR/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/hr_HR/docs/user-guide/archive/vwii/sd-preparation.md b/translations/hr_HR/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/hr_HR/docs/user-guide/archive/vwii/sidebar.md b/translations/hr_HR/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/hr_HR/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/hr_HR/docs/user-guide/aroma/autoboot.md b/translations/hr_HR/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/hr_HR/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/hr_HR/docs/user-guide/aroma/browser-exploit.md b/translations/hr_HR/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/hr_HR/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/hr_HR/docs/user-guide/aroma/finalizing-setup.md b/translations/hr_HR/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/hr_HR/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/hr_HR/docs/user-guide/aroma/getting-started.md b/translations/hr_HR/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/hr_HR/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/hr_HR/docs/user-guide/aroma/installing-payloadloader.md b/translations/hr_HR/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/hr_HR/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/hr_HR/docs/user-guide/aroma/nand-backup.md b/translations/hr_HR/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/hr_HR/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/hr_HR/docs/user-guide/aroma/sd-preparation.md b/translations/hr_HR/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/hr_HR/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/hr_HR/docs/user-guide/aroma/sidebar.md b/translations/hr_HR/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/hr_HR/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/hr_HR/docs/user-guide/cbhc/browser-exploit.md b/translations/hr_HR/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/hr_HR/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/cbhc/ds-vc-choice.md b/translations/hr_HR/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/hr_HR/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/hr_HR/docs/user-guide/cbhc/installing-hblc.md b/translations/hr_HR/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/hr_HR/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/cbhc/launching-cfw.md b/translations/hr_HR/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/hr_HR/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/cbhc/nand-backup.md b/translations/hr_HR/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/hr_HR/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/cbhc/sd-preparation.md b/translations/hr_HR/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/hr_HR/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hr_HR/docs/user-guide/cbhc/sidebar.md b/translations/hr_HR/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/hr_HR/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/cfw-choice.md b/translations/hr_HR/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/hr_HR/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/hr_HR/docs/user-guide/haxchi/browser-exploit.md b/translations/hr_HR/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/hr_HR/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/haxchi/ds-vc-choice.md b/translations/hr_HR/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/hr_HR/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/hr_HR/docs/user-guide/haxchi/installing-hblc.md b/translations/hr_HR/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/hr_HR/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/haxchi/launching-cfw.md b/translations/hr_HR/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/hr_HR/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/haxchi/nand-backup.md b/translations/hr_HR/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/hr_HR/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/haxchi/sd-preparation.md b/translations/hr_HR/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/hr_HR/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hr_HR/docs/user-guide/haxchi/sidebar.md b/translations/hr_HR/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/hr_HR/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/introduction.md b/translations/hr_HR/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/hr_HR/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/hr_HR/docs/user-guide/mocha/entrypoint-choice.md b/translations/hr_HR/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/hr_HR/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/hr_HR/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/hr_HR/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/hr_HR/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/hr_HR/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/hr_HR/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hr_HR/docs/user-guide/mocha/indexiine/sidebar.md b/translations/hr_HR/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/hr_HR/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/hr_HR/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/hr_HR/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/hr_HR/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hr_HR/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/hr_HR/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/mocha/sidebar.md b/translations/hr_HR/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/hr_HR/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/tiramisu/autoboot.md b/translations/hr_HR/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/hr_HR/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/hr_HR/docs/user-guide/tiramisu/browser-exploit.md b/translations/hr_HR/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/hr_HR/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/hr_HR/docs/user-guide/tiramisu/finalizing-setup.md b/translations/hr_HR/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/hr_HR/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/hr_HR/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/hr_HR/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/hr_HR/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/hr_HR/docs/user-guide/tiramisu/nand-backup.md b/translations/hr_HR/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/hr_HR/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/hr_HR/docs/user-guide/tiramisu/sd-preparation.md b/translations/hr_HR/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/hr_HR/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/hr_HR/docs/user-guide/tiramisu/sidebar.md b/translations/hr_HR/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/hr_HR/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/hr_HR/docs/user-guide/vwii/browser-exploit.md b/translations/hr_HR/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/hr_HR/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/hr_HR/docs/user-guide/vwii/finalizing-setup.md b/translations/hr_HR/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/hr_HR/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/hr_HR/docs/user-guide/vwii/installing-cioses.md b/translations/hr_HR/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/hr_HR/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/hr_HR/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/hr_HR/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/hr_HR/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/hr_HR/docs/user-guide/vwii/nand-backup.md b/translations/hr_HR/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/hr_HR/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/hr_HR/docs/user-guide/vwii/patching-ios80.md b/translations/hr_HR/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/hr_HR/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/hr_HR/docs/user-guide/vwii/sd-preparation.md b/translations/hr_HR/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/hr_HR/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/hr_HR/docs/user-guide/vwii/sidebar.md b/translations/hr_HR/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/hr_HR/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/hr_HR/docs/user-guide/vwii/vwii-modding.md b/translations/hr_HR/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/hr_HR/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/hr_HR/docs/vwii/vwii-modding.md b/translations/hr_HR/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/hr_HR/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/hu_HU/docs/extras/about.md b/translations/hu_HU/docs/extras/about.md deleted file mode 100644 index cc26edc4902..00000000000 --- a/translations/hu_HU/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# Erről az útmutatóról ---- -Ezt az útmutatót a [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) stábja írta - -> **Készítők** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, és redcubie.** -> -> Köszönjük [mindenki másnak](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) aki hozzájárult az útmutatóhoz a GitHub-on. - -?> [Megtalálhatod ezt az útmutatót a GitHub-on](https://github.com/hacks-guide/Guide-WiiU), A licence: [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Fejlesztő / Eszköz készítők** -> -> - **GaryOderNichts** és **Maschell** az [AutobootModule](https://github.com/wiiu-env/AutobootModule) készítői. -> -> - **GaryOderNichts** a [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), az [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), az [UFDiine](https://github.com/GaryOderNichts/UFDiine), a [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), a [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/) javított verziója, és a [Bloopair](https://github.com/GaryOderNichts/Bloopair) készítője. -> -> - **dragbe** és **FIX94** a d2x cIOS Installer készítői. -> -> - **koolkdev** és **FIX94** a [disc2app](https://github.com/koolkdev/disc2app) készítői. -> -> - A **Docsify team** a [docsify.js](https://github.com/docsifyjs/docsify/) készítője. -> -> - **jhildenbiddle** a [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable) készítője. -> -> - **Maschell** a [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), a [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), az [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), a [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), a [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), a [MochaPayload](https://github.com/wiiu-env/MochaPayload), a [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), a [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), a [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), a [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), a [Tiramisu Downloader](https://tiramisu.foryour.cafe/), a [wudd](https://github.com/wiiu-env/wudd), az [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), az [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), a [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), az [Aroma Downloader](https://aroma.foryour.cafe), és a Tiramisu/Aroma készítője. -> -> - **FIX94** és **smealum** a [Haxchi és CBHC](https://github.com/FIX94/haxchi) készítői. -> -> - **dimok789** a [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), a [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), és a [Mocha](https://github.com/dimok789/mocha) készítője. -> -> - **Maschell** és **dimok789** a [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer) készítői. -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale**és a **4TU Team** a [hb-appstore](https://github.com/vgmoose/hb-appstore) készítői. -> -> - **Jonhyjp** az [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/) készítője. -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** és **orboditilt** a [JSTypeHax](https://github.com/wiiu-env/JsTypeHax) készítői. -> -> - **Dr Clipper**, **ZRicky11**, **dmm** és **FIX94** a patchelt IOS80 Installer for vWii készítői. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, és **Xpl0itU** a [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) készítői. -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** és **brienj** a [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/) készítői. -> -> - **koolkdev** a [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper) készítője. -> -> - **koolkdev** és **Maschell** a [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload) készítői. -> -> - **dimok789** a [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py) készítője. -> -> - **TheLordScruffy** a [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer) készítője. -> -> - **marco-calautti** a [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) készítője. diff --git a/translations/hu_HU/docs/extras/block-updates.md b/translations/hu_HU/docs/extras/block-updates.md deleted file mode 100644 index 52a2c81dadf..00000000000 --- a/translations/hu_HU/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Frissítések letiltása ---- -Minden aktuálisan ismert Wii U exploit, ellentétben például a Nintendo Switch RCM exploitjával, patchelhető egy rendszer frissítéssel. Habár a Wii U már hivatalosan nem támogatott, a Nintendo még mindig kiadhat frissítéseket hozzá. Konkrétan az 5.5.3-tól az 5.5.6-ig a frissítések azt követően kerültek kiasásra, hogy megszűnt a Wii U támogatása, így a frissítések tiltása továbbra is ajánlott. - -Habár az Aroma's PayloadLoader már rendelkezik beépített blokkolás funkcionalitással, ajánlott, hogy töröld az update mappát, hogy effektíven blokkold a rendszer frissítéseket. Ha egy sárga figyelmeztető képernyőt kapsz, az Aroma-ra bootolás közben, akkor az update folder még mindig létezik, és ajánlott a törlése a lenti útmutatás alapján. - -### Lépések {docsify-ignore} - -Jelenleg egy mód létezik a frissítések tiltására egy Wii U rendszeren: - -1. Legyél biztos abban, hogy a legutolsó Aroma bétád van. -1. Bootolj Aromába. - - Ha egy sárga figyelmezetést kapsz, nyomj X-et a frissítések blokkolásáshoz. - - Ha nme kpasz figyelmezetést, de az AutobootMenu azt mondja, hogy "Updates not blocked!", nyomd le és tartsd lenyomva a (+) **és** (-) gombokat egyszerre, addig míg az nem mondja, hogy blokkolt. diff --git a/translations/hu_HU/docs/extras/configurable-payload.md b/translations/hu_HU/docs/extras/configurable-payload.md deleted file mode 100644 index c3713648fb4..00000000000 --- a/translations/hu_HU/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Konfigurálható Payload ---- -A payload konfigurálható, hasonlóan a Haxchi konfigurációjához. Ez nagyon hasznos lehet a Mocha felhasználók számára, mivel egy kis időt takarít meg a Mocha elindításával a Homebrew Launcher-en keresztül. - -### Amire szükséged van {docsify-ignore} - -- A konfigurálható payload. -- A [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix) legutolsó kiadása. - -### Lépések {docsify-ignore} - -1. Csomagold ki a `homebrew_launcher_channel.v2.1_fix.zip` fájlt az az SD-kártya gyökerében található `install` mappába. -1. Helyezd az SD kártyát a Wii U-ba, és indítsd el a [Homebrew Launcher](mocha/online-exploit/browser-exploit) programot. -1. Navigálj a Homebrew Launcherben és indítsd el a WUP Installer GX2 alkalmazást. -1. Válaszd ki a `Homebrew Launcher Channel` csatornát. Nyomd meg `Install` gombot, és telepítsd a NAND-ra, mint telepítési célra. Ez telepíti a Homebrew Launcher Channel-t a Wii U Menu-be. -1. Ha a folyamat befejeződött, nyomd a HOME gombot addig, amíg vissza nem térsz a Wii U Menu-be. -1. Ekkor még a csatorna nem fog elindulni, mivel ütközik az SD kártyán futó verzióval, amit az előbb használtál. Indítsd újra a Wii U-t. -1. Vedd ki az SD kártyát Wii U-dból és csatlakoztasd a számítógépedhez. -1. Csomagold ki a `Configurable_Payload.zip` fájlt az SD kártyád gyökerébe. Ha a program arra kér, hogy írd felül az SD-kártyán lévő fájlokat, akkor tedd meg. -1. Helyezd be az SD kártyát a Wii U-dba, indítsd el az internetböngészőt, és navigálj a `wiiuexploit.xyz` weboldalra. -1. Kattints a `Run Homebrew Launcher!` gombra. Ha mindent helyesen csináltál, akkor vissza kell térned a Wii U Menu-be. A Mocha most már engedélyezve van, és használhatod a korábban telepített Homebrew Launcher Channel csatornát. - - Ha a Wii U-d megakad egy fehér vagy más módon lefagyott képernyőn, várj néhány másodpercet. Ha semmi sem történik, indítsd újra a konzolt, [állítsd alaphelyzetbe a böngésző mentési adatait](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history), és próbáld meg újra. diff --git a/translations/hu_HU/docs/extras/donations.md b/translations/hu_HU/docs/extras/donations.md deleted file mode 100644 index 40a698173c1..00000000000 --- a/translations/hu_HU/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Adományok {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/hu_HU/docs/extras/dump-games.md b/translations/hu_HU/docs/extras/dump-games.md deleted file mode 100644 index c6f9e3af502..00000000000 --- a/translations/hu_HU/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Wii U lemezek dumpolása ---- -A lemezeid dumpolása lehetővé teszi, hogy a játék egy másolatát telepítsd a rendszered NAND-jára/az USB-eszközödre, így a játékkal a lemez nélkül is játszhatsz. - -?> A játékok dumpolásához és telepítéséhez működő homebrew telepítésre van szükség, ezért mielőtt ezt követnéd, mindenképpen fejezd be a CFW telepítéséről szóló fő útmutatót. - -!> Az ezzel az útmutatóval lementett fájlok megosztása **ILLEGÁLIS**. -Ha ezt az útmutatót arra akarod használni, hogy megoszd a dumpolt játékaidat, ne tedd. - -### A Wii U lemeze dumpolása és telepítése {docsify-ignore} - -?> A játék telepítése a rendszermemóriára (NAND) nem ajánlott, mivel az a modelltől függően 8 GB vagy 32 GB méretű, így elég gyorsan elfogy a hely, ha több játékot szeretnél telepíteni. - -?> Ha játékot telepít USB-eszközre, javasoljuk, hogy HDD-t használjon, ne pedig pendrive-ot, mivel azok nem optimalizáltak folyamatos írásra és olvasásra, ezért gyorsan meghibásodnak. Ha a HDD nem rendelkezik külső tápellátással, akkor egy Y-kábelre lesz szükséged ahhoz, hogy a Wii U két USB-helyéhez csatlakoztasd. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Erősítsd meg ezt Yes-szel. - -#### Amire szükséged van {docsify-ignore} - -- Az SD kártyádon elég hely kell legyen, hogy elférjen a járék amit dumpolni akarsz. -- Ha szeretnél USB-re telepíteni, egy USB HDD (+ egy Y-kábel, ha szükséges). -- A [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip) legutolsó kiadása. -- A [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew alkalmazás. - -#### Lépések {docsify-ignore} - -1. Másold a `wup_installer_gx2_wuhb.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a frissen letöltött wudd`.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Kapcsold be a Wii U-d és bootolj az Aromába. -1. Indítsd el a Wii U Menu-t és indítsd el a wudd appot. -1. Válaszd a `Dump partition as .app` opciót -1. Válaszd a `Game` partíciót a dumpolás elkezdéséhez. -1. Ha végzett lépj ki a wuud-ból a Wii U Menu-be. -1. Helyezd be a Wii U-d SD kártyáját a PC-dbe. -1. Másold a `GMXXXXXXXXXXXXXXXX` mappát a `sd:/wudump/WUP-X-XXXX` mappából az `install` mappába az SD kártyádon. - - Ha az `install` mappa nem létezik, hozd létre. -1. Vedd ki az SD kártyád és dugd be a Wii U-dba. -1. Nyisd meg a Wii U Menu-t majd utána a WUP Installer GX2 appot. -1. Válaszd ki a játékod (`GMXXXXXXXXXXXXXXXX`), nyomj `Install`-t és hagyd jóvá `Yes`-szel. -1. Válaszd az 'USB'-t az USB eszközre telepítéshez és a 'NAND'-ot a NAND-ra telepítéshez -1. Lépj ki a WUP Installer GX2-ből a Wii U Menu-be. -1. Látnod kell, hogy a játékod települt és játszható. -1. Vedd ki az SD kártyát a Wii U konzolodból és dugd be a számítógépedbe. -1. A hely felszabadításáért töröld az SD kártyádról a `GMXXXXXXXXXXXXXXXX` mappát az `install` könyvtárból. - -### Játékok mozgatása USB-re - -?> Ha nem szeretnéd a játékot a NAND-ra telepítve megtartani, használd a Wii U data management-jét a játék USB eszközre áthelyezésére. - -!> Ahhoz, hogy USB eszközre mozgasd a játékod, az USB eszközt a Wii U-nak kell formáznia. Ez törli a teljes tartalmát, és megakadályozza a használatát más rendszeren újraformázás nélkül. - -1. Csatlakoztasd az USB eszközödet a Wii U-hoz. -1. Kapcsold be a Wii U-d. -1. A Wii U-d szólni fog, hogy formázni kell az USB eszközt. Erősítsd meg Yes-szel. -1. Nyisd meg a Wii U System Settings-ét. -1. Navigálj a `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` opcióhoz -1. Válaszd ki a játékot és mozgass minden adatot (beleértve a frissítéseket és DLC-t ha van telepítve) az USB eszközre. - -### Frissítések USB-re mozgatása - -?> Ha a lemezes játékod rendelkezik teleptett DLC-vel vagy frissítésekkel, akkor át kell vinned a fájlokat az USB eszközödre. Ezt meg tudod tenni a Wii U data management-jével. - -1. Kapcsold be a Wii U-d -1. Nyisd meg a Wii U System Settings-ét. -1. Navigálj a `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` opcióhoz. -1. Válaszd ki a játékod és mozgasd az update és DLC adatot az USB eszközre. diff --git a/translations/hu_HU/docs/extras/dump-wii-games.md b/translations/hu_HU/docs/extras/dump-wii-games.md deleted file mode 100644 index 37c55ffca23..00000000000 --- a/translations/hu_HU/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Wii lemezek dumpolása ---- -A lemezek dumpolása lehetővé teszi, hogy: lejátszd őket egy Wii emulátoron (nevezetesen a Dolphin-on), lejátszd őket egy USB/SD kártya betöltővel, például a Wiiflow-val, Virtual Console injektálásokat készíts, amelyeket egy Wii U formázott USB meghajtóra vagy a NAND-ra lehet telepíteni, és a Wii U menüjéből indítani. - -?> A Wii-játékok dumpingolásához a vWii-n működő homebrew beállításokra van szükség, ezért előtte mindenképpen fejezd be a [vWii Modding útmutatót](vwii/sd-preparation). - -!> Az ezzel az útmutatóval lementett fájlok megosztása **ILLEGÁLIS**. -Ha ezt az útmutatót arra akarod használni, hogy megoszd a dumpolt játékaidat, ne tedd. - -### Amire szükséged van {docsify-ignore} - -1. A [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip) legutolsó kiadása. -1. A [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) fájl. - -### Lépések {docsify-ignore} - -1. Helyezd be a Wii U-d SD kártyáját a PC-dbe. -1. Másold az `apps` mappát a `CleanRip-v2.1.1.zip` fájlból az SD kártyád gyökerébe. -1. Másold a `wii.dat` fájl tartalmát az SD kártyád gyökerébe. -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. - -### A lemez dumpolása - -1. Kapcsold be a Wii U-dat, majd válaszd a Wii Menu ikont, hogy a vWii-be bootolj. -1. Indítsd el a Homebrew Channel-t. -1. Indítsd el CleanRip-et. -1. Olvasd el a felelősségi nyilatkozatot, majd nyomj A gombot. -1. Válaszolj Yes-t, hogy bekapcsolat a Checksum Calculations-t (ellenőrző összeg számítást). -1. Válasz vagy az USB-t vagy Front SD-t (első SD kártyát) attól függően, hogy melyik eszközt használnád a dumpolási folyamathoz. - - Fontos, megjegyezni, hogy az eszköznek, amit kiválasztasz, FAT32 vagy NTFS fájlrendszerve kell formázva lennie. -1. Nyomj A gombot a folytatáshoz. -1. Válassz No-t azon a képernypn, ahol rákérdez redump.org DAT fájlok letöltésére. -1. Helyezd be a lemezed, majd nyomj A gombot. -1. Menj [erre az oldalra](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games), hogy megtudd kétrétegű-e a lemezed. -1. Állíts be mindent úgy, hogy egyezzen a következőkkel: - - Dual Layer: `Yes/No` (Válaszd a `Yes`-t a a játéklemezed dual-layer-es) - - Chunk Size: `Max` - - New device per chunk: `No` -1. Ha több lemezt is szeretnél dumpolni válaszd a Yes-t, hogy megjegyeze a beállításaid. Ha nem, válassz No-t. - -?> Készülj fel rá, hogy egy darabig várni kell. A dumpolási folyamat 30 és 1 óra közötti ideig tart, függően az SD kártyád sebességétől. - -### Darabolt fájlok összefűzése - -?> Ha lemezt egy FAT32 eszközre dumpoltad, legalább 2 fájlodnak kell lennie ami `.partX.iso`-ra végződik. Össze kell fűzni őket. - -#### Windows {docsify-ignore} - -1. Másold az összes egyező nevő és `.partX.iso` végű fájlt egy mappába számítőgépeden. -1. Kattints jobb gombbal a mappába a Shift nyomva tartása és válaszd `A PowerShell-ablak megnyitása itt` opciót. -1. A PowerShell ablakban futtasd a következő parancsot: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Másold az összes egyező nevő és `.partX.iso` végű fájlt egy mappába számítőgépeden. -1. Nyisd meg a Terminal-t. -1. Használd a `cd ` parancsot, de cseréld ki benne az `` útvonalat a saját útvonaladra a `.partX.iso` fájljaidhoz. -1. Használd a következő parancsot: `cat *.part?.iso > game.iso`. diff --git a/translations/hu_HU/docs/extras/faq.md b/translations/hu_HU/docs/extras/faq.md deleted file mode 100644 index 43f558068bd..00000000000 --- a/translations/hu_HU/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Gyakran ismételt kérdések {docsify-ignore-all} ---- - -### Van-e kockázata a homebrew-nak? - -Jelenleg a homebrew használata Wii U-n nem jelent bannolási kockázatot, amíg nem csalsz az online játékokban és nem követsz el eShop csalást. Azonban mindig legyél elővigyázatos a letöltött homebrew-ok indításával, különösen ha nem bízol meg a forrásban, mert egy homebrew elronthatja a rendszered! - -### Mik az exploit-ok? - -Az exploit-ok olyan belépési pontok, amik lehetővé teszik továbi homebrew-ok futtatását. A fő útmutatóban olyan expliotokat fogsz használni, mint a böngésző exploit (http://wiiuexploit.xyz) és a PayloadLoader (Health & Safety exploit). Minden aktuális current exploits betölti az `SD:/wiiu/payload.elf` fájlt, ami átveszi a további betöltését a homebrew-nak. - -### Mi a payload? - -A `payload.elf` fájlnévvel általában megtalálható payload-ok azért léteznek, hogy megkönnyítsék azt, hogy a különböző exploitok ugyanazt a következő szakaszt töltsék be, ami megkönnyíti a frissíthetőséget. Nem számít, hogy milyen exploit tölti be a payload-ot, az eredmény mindig ugyanaz. A PayloadLoaderPayload segítségével több payload között lehet váltani. A fő útmutatóban használt payload a CustomRPXLoader, amely az `SD:/wiiu/payload.rpx`-et tölti be, az EnvironmentLoader útmutatóban pedig `payload.rpx` használt, ami lehetővé teszi a különböző környezetek betöltését. - -### Mik azok a környezetek? - -Egy környezet a "beállítási modulok" gyűjteménye, amelyek a környezet indításakor egy bizonyos sorrendben futnak le. Ilyen környezetek az Aroma és a Tiramisu. A telepítőmodulok kis házi készítésű kódrészletek, amelyek egyszer kerülnek végrehajtásra a környezet beállításához. - -### Hogyan lehet törölni a frissítési mappát a frissítések blokkolásához a Wii U-n? - -Ha a frissítések blokkolásához törölni szeretné a frissítési mappát, tekintse meg a [Frissítések blokkolása útmutatóban](block-updates) található fülét. - -### Milyen SD kártya méret ajánlott? - - - **Játék mentések telepítésére:** 32GB (Kisebb méret használhat, azonban egyes címek mérete 20GB) - - **Játék mod-ok futtatása:** 8GB (FAT32 USB drive használható még a mod-okhoz) - - **Csak homebrew alkalmazások futtatása:** Bármilyen méret. - -**Ajánlott márkák:** SanDisk, Samsung vagy PNY - -?> Megjegyzés: Óvakodj a class 4 SD kártyáktól és az eBay-től! - -### Tudok telepíteni homebrew-t Wii U-ra egy USB-vel az SD kártya helyett? - -Nem, szükséged van egy SD kártyára az első beállításhoz. Az USB ezután használható játékmentések, Virtual Console injektálástok, stb. telepítéséhez, de nem arra, hogy olyan homebrew alkalmazásokat tároljanak, amit telepíteni kell. - -### Amikor néhány fájlt kicsomagolok, néhány fájlnak van duplikáltja ("info.json" & "manifest.install"), mit csináljak ezekkel? - -Semmi különöset, hagy őket ott, töröld őket, vagy is felül az újakkal. Ezek a fájlok nem használtak a folyamatban, így nem számít, hogy ott vannak-e vagy sem. - -### Milyen egy Wii U formázott USD drive? - -Ez egy olyan USB-meghajtó, amelyet a Wii U konzol a saját formátumára formázott. -A Wii U által formázott USB-meghajtót ***nem tudja olvasni más eszköz, csak az a Wii U, amely eredetileg formázta.*** -Ha valaha is használni szeretné egy másik Wii U konzollal vagy bármilyen más eszközzel, újra kell formáznia. diff --git a/translations/hu_HU/docs/extras/find-wiiu-ip-address.md b/translations/hu_HU/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/hu_HU/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/hu_HU/docs/extras/unblock-updates.md b/translations/hu_HU/docs/extras/unblock-updates.md deleted file mode 100644 index cfbddd67a01..00000000000 --- a/translations/hu_HU/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Frissítések blokkolásának feloldása ---- -Ez akkor szükséges, ha egy System Update-t kell elvégezned. - -?> Ha Aromát futtatsz és törölted az update mappát, akkor tiltsd le az autobootingot és hozd újra léptre az update mappát. - -### Lépések {docsify-ignore} - - - -#### **Az Aroma Autoboot eltávolítása** - -### Az Aroma Autoboot eltávolítása - -?> Ha autobootolsz a PayloadLoader-be, a frissítéek automatikusan blokkoltak. Kövesd az alábbi útmutatót a letiltásához. - -1. Indítsd el a PayloadLoader Installer-t a Wii U Menu-ből. -1. Nyomj A gombot a`Check` kiválasztásához. -1. Válaszd a `Boot options`.-t. -1. Megkérdezi, hogy szeretnéd-e megváltoztatni a boot címet. Válaszd a `Switch back to Wii U Menu` és nyomd meg az A gombot. -1. Ha a folyamat befejeződött, nyomj A gombot a konzol leállításához. -1. Végezz el egy system Update-et. -1. Kövesd [ezt](../docs/user-guide/aroma/autoboot), hogy újra engedélyezd a autobooting-ot. - -#### **A frissítés mappa újra létrehozása** - -### A frissítés mappa újra létrehozása - -1. Legyél biztos abban, hogy a legutolsó Aroma bétád van. -1. Bootolj Aromába a (+) gomb megnyomásával. -1. Tarts nyomva a (+) **és a** (-) gombokat, amíg azt nem mondja, hogy "Updates not blocked!". - -#### **DNS blokkok eltávolítása** - -### DNS blokkok eltávolítása - -1. Lépj be a Wii U system settings-ébe és navigálj az `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` és állítsd be az `Auto-obtain` opciót. -1. Most már nem blokkolod a frissítéseket. - - diff --git a/translations/hu_HU/docs/extras/uninstall-cbhc.md b/translations/hu_HU/docs/extras/uninstall-cbhc.md deleted file mode 100644 index 93a804bdba0..00000000000 --- a/translations/hu_HU/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# A CBHC eltávolítása ---- -Ez az oldal végigvezet a CBHC Wii U-dról eltávolításán. - -### Lépések {docsify-ignore} - -1. Indítsd el a Homebrew Launcher-t. -1. Indítsd el a CBHC Installer-t. -1. Válaszd ki a DS Virtual Console játékot, amit szeretnél eltávolítani a CBHC-ból, majd nyomj `A` gombot. -1. Olvasd el a figyelmeztetéseket és nyomd meg a `B` gombot. -1. Ellenőrizd, hogy a Wii U-d többé nem autobootol a CBHC-be, a konzol újrabootolásakor. -1. Ha sem autoboot sem menü képernyő nem jelent meg a konzol bootolásakor, akkor elindíthatod a System Settinges-et ahol a Data Management alatt biztonságosan eltávolíthatod a `DON'T TOUCH ME`alkalmazást. - -?> Ha a következő felugró ablak jelenik meg: "A system-memory error has occurred. Turn off the console, and then try again." a `DON'T TOUCH ME` alkalmazás törlése közben, indítsa újra a rendszert, és próbálja meg újra törölni az alkalmazást. **Kérjük**, győződjön meg róla, hogy az alkalmazás törlése előtt minden fenti lépést követett. \ No newline at end of file diff --git a/translations/hu_HU/docs/extras/uninstall-indexiine.md b/translations/hu_HU/docs/extras/uninstall-indexiine.md deleted file mode 100644 index cb16c434f4d..00000000000 --- a/translations/hu_HU/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Az Indexiine eltávolítása ---- -Ez az oldal végigvezet a Indexiine Wii U-dról eltávolításán. - -### Lépések {docsify-ignore} - -1. Indítsd el a Homebrew Launcher-t. -1. Indítsd el az Indexiine-Installer-t. -1. Nyomj B gombot az Indexiine eltávolításához. -1. Ellenőrizd, hogy a Wii U-nem indtja automatikusan belépéskor a Homebrew Launcherrel az Internet böngészőt. diff --git a/translations/hu_HU/docs/extras/uninstall-payloadloader.md b/translations/hu_HU/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index a2d3da18a18..00000000000 --- a/translations/hu_HU/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# A PayloadLoader eltávolítása ---- -Ez az oldal végigvezet a PayloadLoader Wii U-dról eltávolításán. - -> A gyári visszaállítás **nem** távolítja el a beillesztett PayloadLoader-t. A teljes eltávolításhoz kövesd ezt az útmutató. - -### Amire szükséged van {docsify-ignore} - -- A legutolsó fájlok az [Aroma for your café](https://aroma.foryour.cafe). oldalról. - 1. Görgess le a **Download** szakaszig. - 1. Olvasd el a lépéseket, és kattintsd be a jelölő négyzeteket. - 1. Kattints a `Download Payloads` és a `Download Base Aroma` opciókra. - -### A PayloadLoader-be autobootolás visszacsinálása - -1. Indítsd el a PayloadLoader Installer-t a Wii U Menu-ből. -1. Nyomj A gombot a`Check` kiválasztásához. -1. Válaszd a `Boot options`.-t. -1. Megkérdezi, hogy szeretnéd-e megváltoztatni a boot címet. Nyomj A gombot a `Switch back to Wii U Menu` opció kiválasztásához. -1. Ha a folyamat befejeződött, nyomj A gombot a konzol leállításához. -1. A konzol mos már újra a Wii Menu-be bootol. A PayloadLoader továbbra is indítható a Health & Safety appal. - -### A PayloadLoader eltávolítása - -1. Indítsd el a Health & Safety appot és bootoljál Aromába. -1. Idnítsd el a PayloadLoader Installer-t a Wii U Menu-ből. -1. Nyomj A gombot a`Check` kiválasztásához. -1. Válaszd a `Remove`-ot. -1. Rá fog kérdezni, hogy biztos el akarod-e távolítani a PayloadLoader-t. Válaszd az a `Remove`-ot újra. -1. Ha a folyamat befejeződött, nyomj A gombot a konzol leállításához. diff --git a/translations/hu_HU/docs/privacy/privacy-policy.md b/translations/hu_HU/docs/privacy/privacy-policy.md deleted file mode 100644 index 0629845463e..00000000000 --- a/translations/hu_HU/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# ADATVÉDELMI TÁJÉKOZTATÓ {docsify-ignore-all} - -**Utoljára frissítve: 2020. január 18** - - -Köszönjük, hogy a Wii U Hacks Guide („társaság”, „mi”, „minket” vagy „miénk”) közösségünk részévé vált. Elkötelezettek vagyunk személyes adatainak és a magánélethez való jogának védelme mellett. Ha bármilyen kérdése vagy aggálya van a szabályzatunkkal vagy a személyes adataival kapcsolatos gyakorlatunkkal kapcsolatban, kérjük, lépjen kapcsolatba velünk a nh.wiiuguide@gmail.com címen. - -Amikor meglátogatja a https://wiiu.hacks.guide weboldalunkat, és igénybe veszi szolgáltatásainkat, személyes adatait ránk bízza. Az adatvédelmet nagyon komolyan vesszük. Ebben a tájékoztatóban leírjuk adatvédelmi szabályozásunkat. Igyekszünk a lehető legvilágosabban elmagyarázni Önnek, hogy milyen adatokat gyűjtünk, hogyan használjuk fel azokat, és milyen jogai vannak ezzel kapcsolatban. Reméljük, hogy szán egy kis időt arra, hogy figyelmesen átolvassa, mert ez fontos. Ha a jelen adatvédelmi szabályzatban olyan feltételek szerepelnek, amelyekkel nem ért egyet, kérjük, ne használja tovább az Oldalainkat és szolgáltatásainkat. - -Ez az adatvédelmi szabályzat a weboldalunkon (például a https://wiiu.hacks.guide) és/vagy a kapcsolódó szolgáltatásokon, értékesítésen, marketingtevékenységeken vagy rendezvényeken keresztül gyűjtött valamennyi információra vonatkozik (a jelen adatvédelmi szabályzatban ezeket együttesen "**Oldalaknak**" nevezzük). - -**Kérjük, figyelmesen olvassa el ezt az adatvédelmi szabályzatot.** - - -## TARTALOMJEGYZÉK - -[1. MILYEN INFORMÁCIÓKAT GYŰJTÜNK?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. HASZNÁLUNK SÜTIKET ÉS MÁS KÖVETŐ TECHNOLÓGIÁT?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. MIK AZ ADATVÉDELMI JOGAID?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. RENDELKEZNEK-E A KALIFORNIAI LAKOSOK KÜLÖNLEGES ADATVÉDELMI JOGOKKAL?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. FRISSÍTJUK EZT A SZAÁLYZATOT?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOGYAN TUDOK VELETEK KAPCSOLATBA LÉPNI EZZEL A SZABÁLYZATTAL KAPCSOLATOSAN?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. MILYEN INFORMÁCIÓKAT GYŰJTÜNK? :id=_1-what-information-do-we-collect - -***Röviden:**** Nem gyűjtünk személyes adatokat.* - -Semmilyen formában nem gyűjtünk személyes adatokat. A tárhelyszolgáltatónk, a [GitHub Pages](https://pages.github.com/) azonban személyes adatokat gyűjthet. További információért lásd a [GitHub adatvédelmi nyilatkozatát](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***Röviden:****Nem használunk sütiket és más nyomkövető technológiákat az Ön adatainak gyűjtésére és tárolására.* - -Nem használunk sütiket és hasonló nyomkövető technológiákat (például webjelzőket és pixeleket) az információk eléréséhez vagy tárolásához. - - -### 3. MIK AZ ADATVÉDELMI JOGAID? :id=_3-what-are-your-privacy-rights - -***Röviden:*** *Egyes régiókban, például az Európai Gazdasági Térségben, olyan jogokkal rendelkezik, amelyek nagyobb hozzáférést és ellenőrzést biztosítanak személyes adatai felett. Áttekintheted, módosíthatod és megszüntetheted a fiókod bármikor.* - -Egyes régiókban (például az Európai Gazdasági Térségben) az alkalmazandó adatvédelmi törvények értelmében bizonyos jogokkal rendelkezik. Ezek közé tartozhat (i) a személyes adataihoz való hozzáférés és azok másolatának igényléséhez való jog, (ii) a helyesbítés vagy törlés kérése, (iii) a személyes adatai feldolgozásának korlátozásához való jog, és (iv) adott esetben az adathordozhatósághoz való jog. izonyos körülmények között joga van ahhoz is, hogy tiltakozzon személyes adatainak feldolgozása ellen. Ilyen kérelem benyújtásához kérjük, használja az alábbiakban megadott [elérhetőségeket](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy). A vonatkozó adatvédelmi törvényeknek megfelelően mérlegeljük a kérelmeket, és azokra tekintettel járunk el. - -Ha személyes adatainak feldolgozásához az Ön hozzájárulására támaszkodunk, Önnek joga van ahhoz, hogy hozzájárulását bármikor visszavonja. Felhívjuk azonban figyelmét, hogy ez nem érinti a visszavonás előtti feldolgozás jogszerűségét. - -Ha Ön az Európai Gazdasági Térségben lakik, és úgy véli, hogy személyes adatait jogellenesen dolgozzuk fel, joga van panaszt tenni a helyi adatvédelmi felügyeleti hatóságnál is. Elérhetőségeiket itt találod: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. RENDELKEZNEK-E A KALIFORNIAI LAKOSOK KÜLÖNLEGES ADATVÉDELMI JOGOKKAL? :id=_4-do-california-residents-have-specific-privacy-rights - -***Röviden:**** Igen, ha Ön kaliforniai lakos, különleges jogokat élvez a személyes adataihoz való hozzáféréssel kapcsolatban.* - -A kaliforniai polgári törvénykönyv 1798.83. szakasza, más néven a "Shine The Light" törvény lehetővé teszi a kaliforniai lakosú felhasználóink számára, hogy évente egyszer ingyenesen tájékoztatást kérjenek és kapjanak tőlünk a személyes adatok kategóriáiról (ha vannak ilyenek), amelyeket közvetlen marketing célokra harmadik félnek adtunk át, valamint az összes olyan harmadik fél nevét és címét, akikkel a közvetlenül megelőző naptári évben személyes adatokat osztottunk meg. Ha Ön kaliforniai lakos, és szeretne ilyen kérést benyújtani, kérjük, hogy kérését írásban nyújtsa be hozzánk az alábbiakban megadott elérhetőségeken. - -Ha Ön 18 év alatti, kaliforniai lakhellyel rendelkezik, és regisztrált fiókkal rendelkezik az Oldalakon, joga van kérni az Oldalakon nyilvánosan közzétett nem kívánt adatok eltávolítását. Az ilyen adatok eltávolításának kéréséhez kérjük, lépjen kapcsolatba velünk az alábbiakban megadott elérhetőségeken, és adja meg a fiókjához tartozó e-mail címet, valamint egy nyilatkozatot arról, hogy Kaliforniában lakik. Gondoskodunk arról, hogy az adatokat ne tegyük nyilvánosan közzé az Oldalakon, de kérjük, vegye figyelembe, hogy az adatokat nem biztos, hogy teljesen vagy teljes mértékben eltávolítjuk a rendszereinkből. - - -### 5. FRISSÍTJUK EZT A SZABÁLYZATOT? :id=_5-do-we-make-updates-to-this-policy - -***Röviden:**** Igen, szükség szerint frissíteni fogjuk ezt a szabályzatot, hogy megfeleljen a vonatkozó törvényeknek.* - -Időről időre frissíthetjük ezt az adatvédelmi szabályzatot. A frissített verziót egy frissített „Felülvizsgált” dátummal jelezzük, és a frissített verzió akkor lép hatályba, amint hozzáférhetővé válik. Ha lényeges változtatásokat eszközlünk ezen adatvédelmi szabályzatban, akkor vagy az ilyen változtatásokról szóló értesítés szembetűnő kihelyezésével, vagy közvetlenül az Ön részére küldött értesítéssel értesíthetjük Önt. Javasoljuk, hogy gyakran tekintse át ezt az adatvédelmi szabályzatot, hogy tájékozódjon arról, hogyan védjük az Ön adatait. - - -### 6. HOGYAN TUDOK VELETEK KAPCSOLATBA LÉPNI EZZEL A SZABÁLYZATTAL KAPCSOLATOSAN? :id=_6-how-can-you-contact-us-about-this-policy - -Ha kérdése vagy megjegyzése van ehhez a szabályzathoz, írjon az at nh.wiiuguide@gmail.com címre \ No newline at end of file diff --git a/translations/hu_HU/docs/sidebar.md b/translations/hu_HU/docs/sidebar.md deleted file mode 100644 index 503b80e8911..00000000000 --- a/translations/hu_HU/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **Felhasználói útmutató** -- [Bevezetés](introduction) -- [Aroma](aroma/getting-started) -- [vWii moddolás](vwii/vwii-modding) -- **Hibaelhárítás** -- [Gyakori problémák & megoldásuk](common-issues-fixes) -- [Egy vWii IOS/Channel helyreállítása](recover-vwii-ioses-channels) -- **Extrák** -- [Frissítések blokkolása](block-updates) -- [Frissítések blokkolásának feloldása](unblock-updates) -- [Wii U lemezek dumpolása](dump-games) -- [Wii lemezek dumpolása](dump-wii-games) -- [A CBHC eltávolítása](uninstall-cbhc) -- [Az Indexiine eltávolítása](uninstall-indexiine) -- [A Payloadloader eltávolítása](uninstall-payloadloader) -- [Gyakran isméltelt kérdések](faq) -- **Archív** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy metódusok](archive/cfw-choice) -- [Konfigurálható Payload](configurable-payload) -- [vWii moddolás](archive/vwii/sd-preparation) -- **Linkek** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Fordítás](https://icongr.am/material/translate.svg?color=808080&size=16)Fordítás](https://hacks-guide.crowdin.com/u/projects/10) -- [Támogatás](donations) -- [Névjegy](about) -- **Adatvédelem** -- [Adatvédelmi szabályzat](privacy-policy) diff --git a/translations/hu_HU/docs/troubleshooting/common-issues-fixes.md b/translations/hu_HU/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index aecf2ed8e52..00000000000 --- a/translations/hu_HU/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Gyakori hibák & javításuk {docsify-ignore-all} ---- -### Haxchi gyakori hibák - - - **-3:** SD kártya nem érzékelt. Csatlakoztad újra az SD kártyát és próbáld újra. Legyél biztos abban, hogy az SD kártya FAT32-re formázott. Ha a probléma tartós, próbálj belefújni az SD slotba, mert koszossá válhat. - - - **-4:** Az SD kártya érzékelt, de nem csatolható. Ellenőrizd, hogy az SD kártya MBR-t használ-e nem GPT-t. Továbbá ellenőrizd, hogy vannak e más partíciók az SD kártyán és mergeld őket egy nagy elsődleges partícióvá. - - - **-5:** Hiányzó fájlok az SD kártyán. Ellenőrizd, hogy az SD kártyád tartalmaz-e Homebrew Launcher-t itt: /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Böngésző hibák - - - **FSGetMountSource failed:** Ugyanaz, mint fentebb a -3-as, azaz nem sikerült SD kártyát detektálni. Csatlakoztad újra az SD kártyát és próbáld újra. Ez jelentheti az is, hogy az SD kártya zárolt (a tolóka lent van a fenti állapot helyett) vagy az SD kártya neve (label) "WIIU" amit a korábban az útmutató is jelzett, hogy problémát okoz. Ha ezek egyike sem, akkor ppróbáld meg az utolsó javaslatot a -3-ból. - - - **FSOpenFile failed [...] payload.elf:** Az SD kártyáról hiányzik a payload fájl. Ellenőrizd, hogy a payload.elf megtalálható-e a wiiu mappában, és a wiuu mappa a gyökérben van. - - - **FSOpenFile failed:** Az SD kártyáról hiányzik a `homebrew_launcher`. Ellenőrizd, hogy a `homebrew_launcher.elf` megtalálható-e a /wiiu/apps/homebrew_launcher mappában. - - - **SD Mount Failed:** Hasonló a -4-eshez, a konzol érzékeli az SD kártyád, de nem tudja csatolni azt. Legyél biztos abban, hogy megfelelően formázott és nem sérült. Továbbá az SD kártyád jobban kompatibilis megbízható márkákkal (pl. SanDisk, Samsung, Lexar, stb.) és kevésbé van problémájuk. - -### A data management kéri, hogy töröljük a felesleges adatot, mit jelent ez? - -Ez a befejezetlen telepítésekből visszamaradt fájlokra utal. Mindig válaszd a Yes lehetőséget ezen adatok törléséhez, mivel azok ok nélkül foglalják a helyet. Ha egyszer végtelen ciklusban megakadsz az adatok törlésénél, akkor kézzel is törölheted az adatokat. -Használd az FTPiiU Everywhere-t, és keresd meg a `/storage_mlc/usr/import` mappát, majd töröld a mappában lévő fájlokat, ha vannak ilyenek. Itt találhatók a részleges telepítések fájljai a sikertelen telepítések után. Ez a `/storage_usb/usr/import` mappa, ha USB-re telepítetted. -Az `import` mappát mindig üresen kell tartani. - -### A merevlemezem nem működik, vagy furcsa kattogó hangot ad ki, mit tegyek? - -Ennek oka, hogy a Wii U nem ad elég energiát egy USB porton keresztül a merevlemez használatához. - -Ezt úgy tudod orvosolni, hogy vagy egy külső tápellátású HDD-t használsz, vagy egy Y-kábellel csatlakoztatod a HDD-t a két USB-porthoz. - -Ha a HDD egy ideig működött, majd egyes játékoknál/az összes játéknál leállt, ez ugyanaz a probléma, és ugyanazokkal a módszerekkel javítható. - -### Amikor néhány fájlt kicsomagolok, néhány fájlnak van duplikáltja ("info.json" & "manifest.install"), mit csináljak ezekkel? - -Semmi különöset, hagy őket ott, töröld őket, vagy is felül az újakkal. Ezek a fájlok nem használtak a folyamatban, így nem számít, hogy ott vannak-e vagy sem. - -### A konzolom elvesztette az online kapcsolatot és van egy HDD-m a tetején a konzolnak, mit tehetek? - -A belső antennát befolyásolhatja a mervlemez mágnese. -Máshova is mozgathatod a HDD-t mint a Wuii teteje, vagy mozgasd arréb a Wii U-tól teljesen. diff --git a/translations/hu_HU/docs/troubleshooting/fix-errcode-112-1037.md b/translations/hu_HU/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/hu_HU/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/hu_HU/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/hu_HU/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index 92f9c298e40..00000000000 --- a/translations/hu_HU/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Egy vWii IOS/Channel helyreállítása ---- -Ez az oldal végigvezet a vWii-n lévő IOS vagy csatorna helyreállításának folyamatán, függetlenül attól, hogy az bármilyen okból sérült vagy törlődött. - -!> Ez tönkreteheti a vWii NAND-ot, ha nem vigyázol! Kérjük, fontold meg az SLCCMPT és az OTP [biztonsági mentését](vwii/nand-backup), ha még nem készült róluk biztonsági mentés! - -?> Ha valami rendszer frissítés blokkoló metódust használsz, kérjük [távolítsd el](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### Amire szükséged van {docsify-ignore} - -- Egy működő [homebrew telepítésre ](introduction) a Wii U oldalán. -- A [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases) legutolsó kiadása. - -### Lépések {docsify-ignore} - -1. Másold a `decaffeinator.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Kapcsold be Wii U-d és indíts el a választásod szerinti egyedi firmware-t (CFW-t)(Mocha, Haxchi vagy CBHC). -1. Indítsd el a Homebrew Launcher-t. -1. Indítsd el a vWii Decaffeinator-t. - -### Helyreállítási folyamat - -Különböző lehetőségek közül választhatsz. Javasolt, hogy először a `Speciális opciók (Advanced options)` menüben próbáld meg a visszaállítást, ha tudod, mit kell visszaállítani, vagy `Könnyű módban (Light mode)`, ha nem vagy biztos benne. Szélsőséges esetekben, amikor semmilyen más lehetőség nem oldja meg a problémát, az `Agresszív módot (Aggressive mode)` kell választani. - - - -#### **Speciális opciók (Advanced options)** - -### Speciális opciók (Advanced options) - -?> Ez a mód törli a megadott IOS-eket és csatornákat, hogy újratelepítse őket. Minden más adat (beleértve a cIOS-okat is) megmarad. - -
-Kattints ide, hogy megtekintsd, mit lehet visszanyerni ezzel a módszerrel. - -![Speciális opciók (Advanced options)](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Válaszd az `Advanced options`-t a menüben. -1. Használd a D-Pad-et annak kijelölésére, hogy mi legyen helyreállítva. -1. Nyomj Start gombot a visszaállítási folyamat elindításához. -1. Amikor az alkalmazás végez, hagyd, hogy az alkalmazás elindítsa a System Settings-et. -1. A helyreállítási folyamat befejezéséhez végezz el egy rendszerfrissítést a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update)-tel. - -?> Most újra engedélyezheted a [rendszerfrissítés blokkolási módszered](block-updates). - -#### **Könnyű mód (Light mode)** - -### Könnyű mód (Light mode) - -?> Ez a mód törli a System Menu, Wii Message Board mentés adatot, IOS-eket és más rendszer címeket, hogy tiszta verziókat telepíthessen belőlük újra. Kérjük vedd figyelembe, hogy ez eltávolít minden cIOS-t is és újra kell telepíteni azokat. Minden más adat megőrzésre kerül. - -1. Válaszd a `Light mode`-ot a menüben. -1. Nyomj Start gombot a visszaállítási folyamat elindításához. -1. Amikor az alkalmazás végez, hagyd, hogy az alkalmazás elindítsa a System Settings-et. -1. A helyreállítási folyamat befejezéséhez végezz el egy rendszerfrissítést a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update)-tel. - -?> Most újra engedélyezheted a [rendszerfrissítés blokkolási módszered](block-updates). - -> Ha az Error Code 160-0101-et kapod bootoláskor a vWii Decaffeinator használata után, akkor vedd ki a behelyezett lemezt és húzz le minden külső lemezegységet és indítsd újra a rendszert. - -#### **Agresszív mód** - -### Agresszív mód - -!> Ez a mód töröl **mindent**, hogy újratelepítse a tiszta verzióját az alapértelmezet IOS-eknek és csatornáknak. Kérjük vedd figyelembe, hogy minden cIOS, mentés adat és csatorna el fog veszni és a vWii NAND visszaáll a gyári állapotára! - -1. Válaszd a `Agressive mode`-ot a menüben. -1. Olvasd el a figyelmezetetést teljesen. Ha szeretnéd folytatni, nyomj Start gombot a helyreállítási folyamat elkezdéséhez. -1. Amikor az alkalmazás végez, hagyd, hogy az alkalmazás elindítsa a System Settings-et. -1. A helyreállítási folyamat befejezéséhez végezz el egy rendszerfrissítést a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update)-tel. - -?> Most újra engedélyezheted a [rendszerfrissítés blokkolási módszered](block-updates). - -> Ha az Error Code 160-0101-et kapod bootoláskor a vWii Decaffeinator használata után, akkor vedd ki a behelyezett lemezt és húzz le minden külső lemezegységet és indítsd újra a rendszert. - - - -> Ha az Error Code Error Code 105-3102-öt kapod a rendszer frissítésekor, akkor indítsd újra a konzolod, és próbálj újra frissíteni. diff --git a/translations/hu_HU/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/hu_HU/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index f3d45fef05b..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archív - CBHC - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## Browser Exploit {docsify-ignore} - -Ahhoz, hogy a CFW-t telepítsd, először el kell indítanod a Homebrew Launcher-t a böngésző exploit-on keresztül. Legyél biztos abban, hogy a Wii U rendekezik internet hozzáféréssel ehhez a lépéshez. - -### Lépések {docsify-ignore} - -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Indítsd el az Internet Browser-t és navigálj a `wiiuexploit.xyz` oldalra. -1. Kattints a `Run Homebrew Launcher!` gombra. A konzolodnak el kell indítania a Homebrew Launcher-t. - - Ha a Wii U-d megakad egy fehér vagy más módon lefagyott képernyőn, várj néhány másodpercet. Ha semmi nem történik, bootold újra a konzolod, [állítsd alaphelyzetbe a böngésző mentés adatát](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) és próbáld újra. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/hu_HU/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index ae569af9386..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archív - CBHC {docsify-ignore-all} - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## Válaszd ki a DS VC játékod - -Az első dolog, amit el kell döntened, hogy melyik DS Virtual Console (többnyire "VC"-ként rövidítik) játékot akarod megvenni. -Kérjük vedd figyelembe, hogy a játék, amibe a Haxchi/CBHC-t injektáltad nem játszható többé addig, amíg el nem távolítod a Haxchi/CBHC-t és újra nem telepíted a játékot az eShop-ból. - -### Kompatibilis DS VC játékok - -?> Ha európai régiós konzolod van, van rá esély, hogy ingyen rendelkezel a Dr. Kawashima's Brain Training: How Old is Your Brain? játékkal. Menj az [eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u)-ba és ellenőrizd, hogy megvan-e a játék. - -Ha nem rendelkezel az alábbb listában található játékok egyikével sem, nem tudod használni ezt a metódust, mert a 3DS és Wii U eShops bezárásra került. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/hu_HU/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/hu_HU/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index 6c755e0ee8c..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archív - CBHC - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## A Homebrew Launcher Channel telepítése {docsify-ignore} - -Ez az oldal telepíti a Homebrew Launcher Channel-t, mint egy alkalmazást, a Home Menu-be a könnyű hozzáférésért. - -?> Ez az oldal csak Haxchi és CBHC felhasználóknak szól. A Homebrew Launcher Channel (a Homebrew Channel verzió, amit a Wii U Menu-ből indítasz) **nem műkődik** a Mocha CFW-vel! - -### Lépések {docsify-ignore} - -1. Kapcsold be a konzolod. -1. Tarsd nyomva a Home gombot az `Autobooting...` képernyőn a boot menübe jutáshoz. -1. Válaszd a `Boot Homebrew Launcher`-t a Homebrew Launcher indításához. -1. Navigálj a Homebrew Launcherben és indítsd el a WUP Installer GX2 alkalmazást. -1. Használd az éerintőképernyőt a `Homebrew Launcher Channel` kiválasztásához. Nyomj `Install`-t és erősítsd meg `Yes`-szel. -1. Válaszd a NAND-ot telepítési célként (installation destination). Ez telepíti a Homebrew Launcher Channel-t a Wii U Menu-be. -1. Ha a folyamat befejeződött, nyomd a Home gombot addig, amíg vissza nem térsz a Wii U Menu-be. -1. Most már látni fogod a Homebrew Launcher Channel a Wii U Menu-dbe telepítve. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/hu_HU/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index 76a58948d96..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archív - CBHC - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## A CFW indítása {docsify-ignore} - -Most, hogy megvan a NAND biztonsági mentésed arra az esetre, ha később bármi rosszul sülne el, futtathatod a CFW-t a rendszereden. - -Más rendszerekkel, mint DSi, Wii, vagy 3DS, a Wii U CFW átmeneti. Ez azt jelenti, hogy amint a rendszered rebootol, el fogod veszteni a CFW-d és újra követned kell ezeket a lépéseket. Ez átugorható a CBHC Haxchi CFW-re telepítéssel. - -!> A CBHC nem megfelelő telepítése brickelheti a Wii U-dat. Legyél biztos abban, hogy követed a következő szabályokat, amikor CBHC-t telepítesz:
- A DS játéknak az eShopból legálisan telepített játéknak kell lennnie!
- Ne formázd a rendszert, amíg a CBHC telepített!
- Ne töröld a fiókot, amelyik megvásárolta a Virtual Console játékot!
- Ne telepítsd újra ugyanazt a játékot a WUP Installer-rel vagy a eShop-ból!
- Ne telepíts Haxchi-t a CBHC-re!
- Ne távolítsd el a DS Virtual Console játékot, mielőtt [szabályosan eltávolítanád először a CBHC-t](../uninstall-cbhc)!
- Ne mozgasd a DS Virtual Console játékot egy USB meghajtóra! - -!> A fenti szabályok valamelyikének megszegése brickeléshez vezet. - -> Ha aggódsz azon, hogy a CBHC használata közben megsérted ezeket a szabályokat, gondolkozz el a Parental Controls beállításán a felhasználódhoz! A `Data Management` blokkolása és a `Game Rating` beállítása a legnagyobb lehetséges értékelésnek megakadályozhatja a gyakori hibákat, amiket a felhasználók csinálhatnak a CBHC használata esetén. Nézd meg [itt](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) további ifnromációkért, hogy hogyan módosthatod a Parental Controls beállításokat. - -### Lépések {docsify-ignore} - -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Ha még nem tetted meg, akkor töltsd le a választásodnak megfelelő DS Virtual Console játékot az eShop-ból. -1. Indítsd el a Homebrew Launcher-t a rendszereden, úgy [ahogy korábban leírásra került](browser-exploit). -1. Navigálj a Homebrew Launcher-rel és nyisd meg a Haxchi app-ot. -1. A D-Pad segítségével navigáld a kurzort a játékhoz, amihez a Haxchi-t telepítenéd, majd nyomj A gombot a telepítéshez. -1. Ha a telepítés befejeződött, a konzolod elindítja a Wii U Menu-t. Látni fogod, hogy a játékodat felülírta a Haxchi ikon. -1. Futtasd a módosított DS játékot. Ez újraindítja a konzolt és engedélyezi a CFW-t. -1. Futtasd a módosított DS játékot újra és tartsd nyomva az A gombot az indítása után. Ez futtatni fogja a Homebrew Launcher-t. -1. Navigálj a Homebrew Launcher-rel és indítsd el a CBHC app-ot. -1. A D-Pad segítségével navigáld a kurzort a játékhoz, amihez a Haxchi-t telepítetted, majd nyomj A gombot a CBHC telepítéséhez. -1. Ha a telepítés befejeződött, a konzolod elindítja a Wii U Menu-t. -1. Indítsd újra a konzolod. Ha a CBHC jól települt, akkor egy új boot menüt kell látnod. (A CBHC nem kompatibilis a Gyorsindítással. Ha használod a Quick Start Menu-t, kapcsold ki.) -1. Használd a D-Pad-et az `Autoboot: Disabled`-hez navigáláshoz és nyomj A gombot, amíg azt nem mutatja, hogy `Autoboot: System Menu`. -1. A D-Pad segítségével navigálj a `Boot System Menu` opcióhoz és nyomd meg az A gombot. Ez újraindítja a Wii U Menu-t aktivált CFW-vel. -1. A konzolod most már minden újra-bootoláskor automatikusan a CFW-be bootol. -1. Most már újra csatlakoztathatsz bármilyen USB eszközt, amit az útmutató elkezdése előtt is csatlakoztattál. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/cbhc/nand-backup.md b/translations/hu_HU/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 488dbb1ef25..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archív - CBHC - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## Egy NAND mentés készítése {docsify-ignore} - -Ha a későbbi folyamat során bármi rosszul sülne el, és a Wii U brickelődne, a korábban készített NAND biztonsági mentés visszaállításával megoldható a probléma. - -### Lépések {docsify-ignore} - -> A Wii U NAND-ja (modelltől függően) 8 vagy 32 GB-os. Ennek következtében ahhoz, hogy teljes biztonsági mentést készíthess a konzol NAND-járól, az SD-kártyának nagyobbnak kell lennie, mint a NAND mérete. Ha nincs elég nagy SD-kártyád, akkor kihagyhatod az opcionális `MLC` részt, amely a mentési fájlokat és a játékadatokat tartalmazza, és a legtöbb brickelődés helyreállításához nincs rá szükség. - -> A NAND biztonsági mentés visszaállítása a Wii U-n további hardvert és mikroforrasztási ismereteket igényel.
A NAND biztonsági mentés készítése azonban **mindig** hasznos, ezért ne hagyd ki.
A NAND biztonsági mentés egyedi a rendszeredre. Mentések más konzolokról **nem fognak működni**.**. - -1. Navigál keresztül a Homebrew Launcher-en, majd indítsd el a `Wii U NAND Dumper` appot. -1. Használd a Wii U GamePad D-Pad-ját a következő konfiguráció megadásához: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Nyomj A gombot a dumpolás elindításához. -1. Ha a folyamat befejeződött, kapcsold ki a Wii U-dat, vedd kiaz SD kártyád a Wii U-ból és dugd be a PC-dbe. -1. Hogy biztos lehess, hogy nem veszted el a fájlokat, másold az `slc.bin`, az `slccmpt.bin`, a `seeprom.bin` és az `otp.bin`fájlokat és ha teljes mentést választottál, akkor `minden mlc.bin.part` fájlt is a számítógépedre. -1. Töröld a fájlokat az SD kártyádról helyfelszabadítás végett. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/hu_HU/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 913178e5b7a..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archív - CBHC - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## SD kártya előkészítés {docsify-ignore} - -A szükséges CFW fájlokat és néhány további homebrew fájlt rakunk majd az SD kártyára. - -> **Fontos** Az SD kártyád FAT32-re kell legyen formázva. Ha az SD kártyád nem FAT32-re formázott, használd a [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm)-ot 32k (32768) allocation unit size-zal a formázáshoz. **Ne** cimkézd az SD kártyát `wiiu`-nak, különben problémát okoz a homebrew-nak. - -### Amire szükséged van {docsify-ignore} - -- A [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest) legutolsó kiadása. - - A `payload.zip` fájlt kell letöltened. -- A [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) 1.4-es kiadása. - - A The Homebrew Launcher v1.4 kiadását, a `homebrew_launcher.v1.4.zip` fájlt kell letöltened. -- A [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip) legutolsó kiadása. -- A [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix) legutolsó kiadása. - - A `homebrew_launcher_channel.v2.1_fix.zip` fájlt kell letöltened. -- A [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip) legutolsó kiadása. -- A [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest) legutolsó kiadása. - - A `wiiu-extracttosd.zip` fájlt kell letöltened. -- A [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip) legutolsó kiadása. -- A [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip) legutolsó kiadása. -- A legutolsó kiadása a SaveMii Mod-nak. - -### Lépések {docsify-ignore} - -?> **Megjegyzés** Az info.json és a manifest.install fájlok nem szükségesek a moddolási folyamathoz, így törölhetők. - -1. Helyezd be a Wii U-d SD kártyáját a PC-dbe. -1. Hozz létre egy mappát `install` néven az SD kártyád gyökerébe. -1. Másold a tartalmát a `homebrew_launcher_channel.v2.1_fix.zip` fájlnak az `install` mappába, amit létrehoztál. -1. Másold a `haxchi.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `cbhc.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `wup_installer_gx2.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `nanddumper.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `wiiu-extracttosd.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `homebrew_launcher.v.1.4.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `savemii_mod.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `payload.elf` fájlt a `payload.zip` fájlból a `wiiu` mappába az SD kártyádon. ----------- - -### SD kártya kiosztás - -
-Kattints ide a végső SD kártya kiosztás megtekintéséhez. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Minden más appm mint disc2app, nanddumper, stb. is itt kell legyen) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hu_HU/docs/user-guide/archive/cbhc/sidebar.md b/translations/hu_HU/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 517acdfbbdf..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Kezdőlap](../../introduction) -- [CFW választása](../cfw-choice) -- [Válaszd ki a DS VC játékod](ds-vc-choice) -- [SD kártya előkészítés](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Egy NAND mentés készítése](nand-backup) -- [A CFW indítása](launching-cfw) -- [A Homebrew Channel telepítése](installing-hblc) -- **Linkek** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Fordítás](https://icongr.am/material/translate.svg?color=808080&size=16)Fordítás](https://hacks-guide.crowdin.com/u/projects/10) -- [Támogatás](../../donations) -- [Névjegy](../../about) \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/cfw-choice.md b/translations/hu_HU/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 00b95c40eac..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Válaszd ki milyen CFW-t szeretnél ---- -!> **AZ EZEN OLDALON LEÍRT METÓDUSOK MÁR NEM TÁMOGATOTTAK** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../introduction)** - -?> Mielőtt elkezdenéd, frissítsd a Wii U konzolodat a legutolsó firmware-re (5.5.6 az észak-amerikai konzoloknál, 5.5.5 minden más régióban) ha még nem tetted meg. - -Két fő egyedi firmware létezik: a Haxchi/Coldboot Haxchi (többnyire "CBHC"-nek rövidítve) és a Mocha. - -A Haxchi/CBHC egy fizetős DS Virtual Console játékba injektált. A Haxchi-t kézzel kell indítani a Wii U Menu az egyedi firmware-re bootoláshoz, míg a CBHC automatikusan egyedi firmware-re bootol rendszerinduláskor. A Mocha browser exploit-on vagy az Indexiine módszeren alapul, ami az egyetlen ingyenes egyedi firmware-ré teszi. - -Hogy melyik egyedi firmware mellett döntesz, kizárólag **a te ** preferenciád. Nincs jó vagy rossz egyedi fimrware, így ajánlott, hogy válaszd ki magadnak azt ami leginkább megfelel számodra! - -## Haxchi - -- Szüksége van egy legálisan beszerzett fizetős DS Virtual Console játékra az eShop-ból. -- Használható arra, hogy CFW-t indíts közvetlenül a Wii U Menu-ből. -- Minden reboot után újra kell futtatni a Wii U Menu-ből, hogy engedélyezd az egyedi firmware-t. -- A funkcionalitása kibővíthető, ha egy Coldboot Haxchi (CBHC)-t telepítünk a Haxchi telepítésre. - -### [**Folytatás a Haxchi-val**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> CBHC hibás telepítése brickelheti a Wii U-dat! Legyél biztos abban, hogy követed a következő szabályokat a CBHC telepítésekor:
- Egy DS játéknak, amit az eShop-ból legálisan telepítve kell lennie!
- Ne formázd a rendszert, amíg a CBHC telepített!
- Ne töröld a fiókot, amelyik megvásárolta a Virtual Console játékot!
- Ne telepítsd újra ugyanazt a játékot a WUP Installer-rel vagy a eShop-ból!
- Ne telepíts Haxchi-t a CBHC-re! (nem fog brickelődni, de egy boot-loopot okoz! Tartsd nyomva az A-t bootoláskor, hogy elérd a Homebrew Launcher-t és távoítsd el a CBHC-t.)
- Ne távolítsd el a DS Virtual Console játékot, mielőtt [szabályosan eltávolítanád először a CBHC-t](../uninstall-cbhc)!
- Ne mozgasd a DS Virtual Console játékot egy USB meghajtóra! - -!> A fenti szabályok valamelyikének megszegése brickeléshez **vezethet**! - -> Ha aggódsz azon, hogy a CBHC használata közben megsérted ezeket a szabályokat, gondolkozz el a Parental Controls beállításán a felhasználódhoz! A `Data Management` blokkolása és a `Game Rating` beállítása a legnagyobb lehetséges értékelésnek megakadályozhatja a gyakori hibákat, amiket a felhasználók csinálhatnak a CBHC használata esetén. Nézd meg [itt](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) további ifnromációkért, hogy hogyan módosthatod a Parental Controls beállításokat. - -- Szükséged van egy legálisan beszerzett fizetős DS Virtual Console játékra az eShop-ból. -- Automatikusan indítja az egyedi firmware-t minden bootoláskor. - -### [**Folytatás a CBHC-vel**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Nem szükséges hozzá semmilyen játék, így ingyenes. -- Minden reboot után újra kell futtatni a browser exploiton keresztül, hogy engedélyezd az egyedi firmware-t. -- Nem kompatibilis a Homebrew Launcher Channel-lel. -- Elképzelhető, hogy szüksége van internet kapcsolatra függően az általd választott belépési ponttól. - -### [**Folytatás a Mocha-val**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/hu_HU/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/hu_HU/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 16b940acb07..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archív - Haxchi - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## Browser Exploit {docsify-ignore} - -Ahhoz, hogy a CFW-t telepítsd, először el kell indítanod a Homebrew Launcher-t a böngésző exploit-on keresztül. Legyél biztos abban, hogy a Wii U rendekezik internet hozzáféréssel ehhez a lépéshez. - -### Lépések {docsify-ignore} - -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Indítsd el az Internet Browser-t és navigálj a `wiiuexploit.xyz` oldalra. -1. Kattints a `Run Homebrew Launcher!` gombra. A konzolodnak el kell indítania a Homebrew Launcher-t. - - Ha a Wii U-d megakad egy fehér vagy más módon lefagyott képernyőn, várj néhány másodpercet. Ha semmi nem történik, bootold újra konzolt, [állítsd a böngésző mentés adatot alaphelyzetbe](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) és próbáld újra. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/hu_HU/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index 0a176d459b8..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archív - Haxchi {docsify-ignore-all} - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## Válaszd ki a DS VC játékod - -Az első dolog, amit el kell döntened, hogy melyik DS Virtual Console (többnyire "VC"-ként rövidítik) játékot akarod megvenni. -Kérjük vedd figyelembe, hogy a játék, amibe a Haxchi/CBHC-t injektáltad nem játszható többé addig, amíg el nem távolítod a Haxchi/CBHC-t és újra nem telepíted a játékot az eShop-ból. - -### Kompatibilis DS VC játékok - -?> Ha európai régiós konzolod van, van rá esély, hogy ingyen rendelkezel a Dr. Kawashima's Brain Training: How Old is Your Brain? játékkal. Nézz be az[eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u)-be és ellenőrizd, hogy megvan-e a játék,. - -Ha nem rendelkezel az alábbb listában található játékok egyikével sem, nem tudod használni ezt a metódust, mert a 3DS és Wii U eShops bezárásra került. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/hu_HU/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/hu_HU/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index 62184c81d3d..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archív - Haxchi - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## A Homebrew Launcher Channel telepítése {docsify-ignore} - -Ez az oldal telepíti a Homebrew Launcher Channel-t, mint egy alkalmazást, a Wii U Menu-be a könnyű hozzáférésért. - -### Lépések {docsify-ignore} - -?> A Homebrew Launcher Channel telepítése opcionális, mivel már el tudod indítani az A gomb nyomva tartásával a Haxchi indításakor. - -1. Kapcsold be a konzolod. -1. Indítsd el a Haxchi DS játékot a Wii U Menu-ból. Ez újraindítja a Wii U Menu-t aktivált CFW-vel. -1. Futtasd a Haxchi DS játékot újra az A gomb nyomva tartása mellett. Ez el fogja indítani a Homebrew Launcher-t. -1. Navigálj a Homebrew Launcherben és indítsd el a WUP Installer GX2 alkalmazást. -1. Használd az éerintőképernyőt a `Homebrew Launcher Channel` kiválasztásához. Nyomj `Install`-t és erősítsd meg `Yes`-szel. -1. Válaszd a NAND-t telepítési célként (installation destination). Ez telepíti a Homebrew Launcher Channel-t a Wii U Menu-be. -1. Ha a folyamat befejeződött, nyomd a Home gombot addig, amíg vissza nem térsz a Wii U Menu-be. -1. Most már látni fogod a Homebrew Launcher Channel a Wii U Menu-dbe telepítve. Tartsd észben, hogy el kell indítanod minden újrabootolás után a CFW-t, hogy futtasd ezt a csatornát. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/hu_HU/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index d806deb7499..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archív - Haxchi - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## A CFW indítása {docsify-ignore} - -Most, hogy megvan a NAND biztonsági mentésed arra az esetre, ha később bármi rosszul sülne el, futtathatod a CFW-t a rendszereden. - -Más rendszerekkel, mint DSi, Wii, vagy 3DS, a Wii U CFW átmeneti. Ez azt jelenti, hogy amint a rendszered rebootol, el fogod veszteni a CFW-d és újra követned kell ezeket a lépéseket. Ez átugorható a CBHC Haxchi CFW-re telepítéssel. - -### Lépések {docsify-ignore} - -?> Ha a telepítés sikertelen valamilyen okból, próbáld meg eltávolítani, majd újra letölteni a DS VC játékot az eShop-ból és legyél biztos benne, hogy a NAND-ra települ. - -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Ha még nem tetted meg, akkor töltsd le a választásodnak megfelelő DS VC játékot az eShop-ból. -1. Indítsd el a Homebrew Launcher-t a rendszereden, úgy [ahogy korábban leírásra került](browser-exploit). -1. Navigálj a Homebrew Launcher-rel és nyisd meg a Haxchi app-ot. -1. A D-Pad segítségével navigáld a kurzort a játékhoz, amihez a Haxchi-t telepítenéd, majd nyomj A gombot a telepítéshez. -1. Ha a telepítés befejeződött, a konzolod elindítja a Wii U Menu-t. Látni fogod, hogy a játékodat felülírta a Haxchi ikon. -1. Futtasd a módosított DS játékot. Ez újraindítja a konzolt és engedélyezi a CFW-t. -1. Minden egyes újrabbotoláskor szükséged van arra, hogy elindítsd a Haxchi DS játkot a CFW indításához. -1. Most már újra csatlakoztathatsz bármilyen USB eszközt, amit az útmutató elkezdése előtt is csatlakoztattál. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/haxchi/nand-backup.md b/translations/hu_HU/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index ac26b88bbcd..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archív - Haxchi - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## Egy NAND mentés készítése {docsify-ignore} - -Ha a későbbi folyamat során bármi rosszul sülne el, és a Wii U brickelődne, a korábban készített NAND biztonsági mentés visszaállításával megoldható a probléma. - -### Lépések {docsify-ignore} - -> A Wii U NAND-ja (modelltől függően) 8 vagy 32 GB-os. Ennek következtében ahhoz, hogy teljes biztonsági mentést készíthess a konzol NAND-járól, az SD-kártyának nagyobbnak kell lennie, mint a NAND mérete. Ha nincs elég nagy SD-kártyád, akkor kihagyhatod az opcionális `MLC` részt, amely a mentési fájlokat és a játékadatokat tartalmazza, és a legtöbb brickelődés helyreállításához nincs rá szükség. - -> A NAND biztonsági mentés visszaállítása a Wii U-n további hardvert és mikroforrasztási ismereteket igényel.
A NAND biztonsági mentés készítése azonban **mindig** hasznos, ezért ne hagyd ki.
A NAND biztonsági mentés egyedi a rendszeredre. Mentések más konzolokról **nem fognak működni**.**. - -1. Navigál keresztül a Homebrew Launcher-en, majd indítsd el a `Wii U NAND Dumper` appot. -1. Használd a Wii U GamePad D-Pad-ját a következő konfiguráció megadásához: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Nyomj A gombot a dumpolás elindításához. -1. Ha a folyamat befejeződött, kapcsold ki a Wii U-dat, vedd kiaz SD kártyád a Wii U-ból és dugd be a PC-dbe. -1. Hogy biztos lehess, hogy nem veszted el a fájlokat, másold az `slc.bin`, az `slccmpt.bin`, a `seeprom.bin` és az `otp.bin`fájlokat és ha teljes mentést választottál, akkor `minden mlc.bin.part` fájlt is a számítógépedre. -1. Töröld a fájlokat az SD kártyádról helyfelszabadítás végett. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/hu_HU/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index ceffddd251a..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archív - Haxchi - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## SD kártya előkészítés {docsify-ignore} - -A szükséges CFW fájlokat és néhány további homebrew fájlt rakunk majd az SD kártyára. - -> **Fontos** Az SD kártyád FAT32-re kell legyen formázva. Ha az SD kártyád nem FAT32-re formázott, használd a [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm)-ot 32k (32768) allocation unit size-zal a formázáshoz. **Ne** cimkézd az SD kártyát `wiiu`-nak, különben problémát okoz a homebrew-nak. - -### Amire szükséged van {docsify-ignore} - -- A [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest) legutolsó kiadása. - - A `payload.zip` fájlt kell letöltened. -- A [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) 1.4-es kiadása. - - A The Homebrew Launcher v1.4 kiadását, a `homebrew_launcher.v1.4.zip` fájlt kell letöltened. -- A [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip) legutolsó kiadása. -- A [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix) legutolsó kiadása. - - A `homebrew_launcher_channel.v2.1_fix.zip` fájlt kell letöltened. -- A [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip) legutolsó kiadása. -- A [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest) legutolsó kiadása. - - A `wiiu-extracttosd.zip` fájlt kell letöltened. -- A [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip) legutolsó kiadása. -- A legutolsó kiadása a SaveMii Mod-nak. - -### Lépések {docsify-ignore} - -?> **Megjegyzés** Az info.json és a manifest.install fájlok nem szükségesek a moddolási folyamathoz, így törölhetők. - -1. Helyezd be a Wii U-d SD kártyáját a PC-dbe. -1. Hozz létre egy mappát `install` néven az SD kártyád gyökerébe. -1. Másold a tartalmát a `homebrew_launcher_channel.v2.1_fix.zip` fájlnak az `install` mappába, amit létrehoztál. -1. Másold a `haxchi.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `wup_installer_gx2.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `nanddumper.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `wiiu-extracttosd.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `homebrew_launcher.v.1.4.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `savemii_mod.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `payload.elf` fájlt a `payload.zip` fájlból a `wiiu` mappába az SD kártyádon. ----------- - -### SD kártya kiosztás - -
-Kattints ide a végső SD kártya kiosztás megtekintéséhez. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Minden más appm mint disc2app, nanddumper, stb. is itt kell legyen) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hu_HU/docs/user-guide/archive/haxchi/sidebar.md b/translations/hu_HU/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index 91b1e49aa63..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Kezdőlap](../../introduction) -- [CFW választása](../cfw-choice) -- [Válaszd ki a DS VC játékod](ds-vc-choice) -- [SD kártya előkészítés](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Egy NAND mentés készítése](nand-backup) -- [A CFW indítása](launching-cfw) -- [A Homebrew Channel telepítése](installing-hblc) -- **Linkek** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Fordítás](https://icongr.am/material/translate.svg?color=808080&size=16)Fordítás](https://hacks-guide.crowdin.com/u/projects/10) -- [Támogatás](../../donations) -- [Névjegy](../../about) \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/hu_HU/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 8c7f9905588..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archív - Mocha - Válassz egy Belépési pontot - -!> **AZ EZEN OLDALON LEÍRT METÓDUSOK MÁR NEM TÁMOGATOTTAK** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../introduction)** - -## Online Exploit - -- Szüksége van Internet kapcsolatra minden egyes alkalommal, amikor el akarod indítani a Homebrew Launcher-t. - -### [**Folytatás at Online Exploit-tal**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Szükséges internet kapcsolat a telepítéshez, de használható offline a telepítés után. -- Egy rendszer fájl módosítását igényli. - -### [**Folytatás a Indexiine-nal**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index b83210df30d..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archív - Mocha - Indexiine - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -Ahhoz, hogy a CFW-t telepítsd, először el kell indítanod a Homebrew Launcher-t a böngésző exploit-on keresztül. Legyél biztos abban, hogy a Wii U rendekezik internet hozzáféréssel ehhez a lépéshez. - -### Lépések {docsify-ignore} - -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Indítsd el az Internet Browser-t és navigálj a `wiiuexploit.xyz` oldalra. -1. Kattints a `Run Homebrew Launcher!` gombra. A konzolodnak el kell indítania a Homebrew Launcher-t. - - Ha a Wii U-d megakad egy fehér vagy más módon lefagyott képernyőn, várj néhány másodpercet. Ha semmi nem történik, bootold újra konzolt, [állítsd a böngésző mentés adatot alaphelyzetbe](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) és próbáld újra. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index 8b930b65a89..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archív - Mocha - Indexiine - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Most, hogy megvan a NAND biztonsági mentésed arra az esetre, ha később bármi rosszul sülne el, telepítheted az Indexiine-t a rendszeredre. - -?> Abban az esetben, ha még nem dugtad vissza az SD kártyád a Wii U-dba a NAND mentésed számítógépre másolása után, most tedd meg. - - -### Lépések {docsify-ignore} - -1. Kapcsold be a Wii U-d. -1. Indítsd el az internet browsert és navigálj a `wiiuexploit.xyz` oldalra. -1. Kattints a `Run Homebrew Launcher!` gombra. A konzolodnak el kell indítania a Homebrew Launcher-t. - - Ha a Wii U-d megakad egy fehér vagy más módon lefagyott képernyőn, várj néhány másodpercet. Ha semmi nem történik, bootold újra konzolt, [állítsd a böngésző mentés adatot alaphelyzetbe](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) és próbáld újra. -1. Navigálj keresztül a Homebrew Launcher-en, majd indítsd el az `Indexiine Installer` appot. -1. Nyomj A gombot az Indexiine telepítéséhez. -1. Ha a folyamat befejeződött, zárd be a Homebrew Launcher-t és menj vissza Wii U Menu-be. - -A Homebrew Launcher el fog indulni minden alkalommal amikor elindítod az Internet Browser-t, még akkor is, ha nincs internet kapcsolat. Ha meg szeretnél látogatni egy weboldal, nyisd meg mielőtt az Indexiine kiváltja az exploitot. - -?> Ha szeretnéd eltávolítani az Indexiine-t, tekintsd meg [Az Indexiine eltávolítása](../../../uninstall-indexiine) oldalt diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index c8b15fc05f3..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archív - Mocha - Indexiine - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../../introduction)** - -## A CFW indítása {docsify-ignore} - -Más rendszerekkel, mint DSi, Wii, vagy 3DS, a Wii U CFW átmeneti. Ez azt jelenti, hogy amint a rendszered rebootol, el fogod veszteni a CFW-d és újra követned kell ezeket a lépéseket. Ez átugorható a CBHC Haxchi CFW-re telepítéssel. - -### Lépések {docsify-ignore} - -1. Indítsd el a Homebrew Launcher-t az Internet Browser indításával. -1. Navigálj a Homebrew Launcher-rel és nyisd meg a Mocha CFW app-ot. -1. Ez visszavisz a Homebrew Launcher-be és engedélyezi a CFW-t. -1. Minden egyes újrabootoláskor újra kell csinálnod ezeket a lépéseket a CFW indításához. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index ccc4bdddd33..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archív - Mocha - Indexiine - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../../introduction)** - -## Egy NAND mentés készítése {docsify-ignore} - -Ha a későbbi folyamat során bármi rosszul sülne el, és a Wii U brickelődne, a korábban készített NAND biztonsági mentés visszaállításával megoldható a probléma. - -### Lépések {docsify-ignore} - -> A Wii U NAND-ja (modelltől függően) 8 vagy 32 GB-os. Ennek következtében ahhoz, hogy teljes biztonsági mentést készíthess a konzol NAND-járól, az SD-kártyának nagyobbnak kell lennie, mint a NAND mérete. Ha nincs elég nagy SD-kártyád, akkor kihagyhatod az opcionális `MLC` részt, amely a mentési fájlokat és a játékadatokat tartalmazza, és a legtöbb brickelődés helyreállításához nincs rá szükség. - -> A NAND biztonsági mentés visszaállítása a Wii U-n további hardvert és mikroforrasztási ismereteket igényel.
A NAND biztonsági mentés készítése azonban **mindig** hasznos, ezért ne hagyd ki.
A NAND biztonsági mentés egyedi a rendszeredre. Mentések más konzolokról **nem fognak működni**.**. - -1. Navigálj keresztül a Homebrew Launcher-en, majd indítsd el a `Wii U NAND Dumper` appot. -1. Használd a Wii U GamePad D-Pad-ját a következő konfiguráció megadásához: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Nyomj A gombot a dumpolás elindításához. -1. Ha a folyamat befejeződött, kapcsold ki a Wii U-dat, vedd kiaz SD kártyád a Wii U-ból és dugd be a PC-dbe. -1. Hogy biztos lehess, hogy nem veszted el a fájlokat, másold az `slc.bin`, az `slccmpt.bin`, a `seeprom.bin` és az `otp.bin`fájlokat és ha teljes mentést választottál, akkor `minden mlc.bin.part` fájlt is a számítógépedre. -1. Töröld a fájlokat az SD kártyádról helyfelszabadítás végett. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index f09e095b041..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archív - Mocha - Indexiine - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../../introduction)** - -## SD kártya előkészítés {docsify-ignore} - -A szükséges CFW fájlokat és néhány további homebrew fájlt rakunk majd az SD kártyára. - -> **Fontos** Az SD kártyád FAT32-re kell legyen formázva. Ha az SD kártyád nem FAT32-re formázott, használd a [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm)-ot 32k (32768) allocation unit size-zal a formázáshoz. **Ne** cimkézd az SD kártyát `wiiu`-nak, különben problémát okoz a homebrew-nak. - -### Amire szükséged van {docsify-ignore} - -- A Mocha konfiguráció. -- A [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest) legutolsó kiadása. - - A `payload.zip` fájlt kell letöltened. -- A [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) 1.4-es kiadása. - - A The Homebrew Launcher v1.4 kiadását, a `homebrew_launcher.v1.4.zip` fájlt kell letöltened. -- A [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip) legutolsó kiadása. -- A [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip) legutolsó kiadása. -- A [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest) legutolsó kiadása. - - A `wiiu-extracttosd.zip` fájlt kell letöltened. -- A [Mocha](https://wiiubru.com/appstore/zips/mocha.zip) legutolsó kiadása. -- A legutolsó kiadása a SaveMii Mod-nak. -- Az [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest)legutolsó kiadása. - -### Lépések {docsify-ignore} - -?> **Megjegyzés** Az info.json és a manifest.install fájlok nem szükségesek a moddolási folyamathoz, így törölhetők. - -1. Helyezd be a Wii U-d SD kártyáját a PC-dbe. -1. Másold a `wup_installer_gx2.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `nanddumper.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `wiiu-extracttosd.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `homebrew_launcher.v.1.4.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `mocha.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `indexiine-installer.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `savemii_mod.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `config.ini` fájlt a `/wiiu/apps/mocha` mappába az SD kártyádon. -1. Másold a `payload.elf` fájlt a `payload.zip` fájlból a `wiiu` mappába az SD kártyádon. ----------- - -### SD kártya kiosztás - -
-Kattints ide a végső SD kártya kiosztás megtekintéséhez. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Minden más app, mint disc2app, nanddumper, stb. is itt kell legyen) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 23f44eadaef..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Kezdőlap](../../../introduction) -- [CFW választása](../../cfw-choice) -- [Válassz egy Belépési pontot](../entrypoint-choice) -- [SD kártya előkészítés](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Egy NAND mentés készítése](nand-backup) -- [Internet Browser Modding](browser-modding) -- [A CFW indítása](launching-cfw) -- **Linkek** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Fordítás](https://icongr.am/material/translate.svg?color=808080&size=16)Fordítás](https://hacks-guide.crowdin.com/u/projects/10) -- [Támogatás](../../../donations) -- [Névjegy](../../../about) \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 10e595ed989..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archív - Mocha - Online Exploit - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -Ahhoz, hogy a CFW-t telepítsd, először el kell indítanod a Homebrew Launcher-t a böngésző exploit-on keresztül. Legyél biztos abban, hogy a Wii U rendekezik internet hozzáféréssel ehhez a lépéshez. - -### Lépések {docsify-ignore} - -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Indítsd el az Internet Browser-t és navigálj a `wiiuexploit.xyz` oldalra. -1. Kattints a `Run Homebrew Launcher!` gombra. A konzolodnak el kell indítania a Homebrew Launcher-t. - - Ha a Wii U-d megakad egy fehér vagy más módon lefagyott képernyőn, várj néhány másodpercet. Ha semmi nem történik, bootold újra konzolt, [állítsd a böngésző mentés adatot alaphelyzetbe](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) és próbáld újra. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index a7077dbd67c..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archív - Mocha - Online Exploit - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../../introduction)** - -## A CFW indítása {docsify-ignore} - -Most, hogy megvan a NAND biztonsági mentésed arra az esetre, ha később bármi rosszul sülne el, futtathatod a CFW-t a rendszereden. - -Más rendszerekkel, mint DSi, Wii, vagy 3DS, a Wii U CFW átmeneti. Ez azt jelenti, hogy amint a rendszered rebootol, el fogod veszteni a CFW-d és újra követned kell ezeket a lépéseket. Ez átugorható a CBHC Haxchi CFW-re telepítéssel. - -### Lépések {docsify-ignore} - -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Indítsd el a Homebrew Launcher-t a rendszereden, úgy [ahogy korábban leírásra került](browser-exploit). -1. Navigálj a Homebrew Launcher-rel és nyisd meg a Mocha CFW app-ot. -1. Ez visszavisz a Homebrew Launcher-be és engedélyezi a CFW-t. -1. Minden egyes újrabootoláskor újra kell csinálnod ezeket a lépéseket a CFW indításához. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 292b57322e3..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archív - Mocha - Online Exploit - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../../introduction)** - -## Egy NAND mentés készítése {docsify-ignore} - -Ha a későbbi folyamat során bármi rosszul sülne el, és a Wii U brickelődne, a korábban készített NAND biztonsági mentés visszaállításával megoldható a probléma. - -### Lépések {docsify-ignore} - -> A Wii U NAND-ja (modelltől függően) 8 vagy 32 GB-os. Ennek következtében ahhoz, hogy teljes biztonsági mentést készíthess a konzol NAND-járól, az SD-kártyának nagyobbnak kell lennie, mint a NAND mérete. Ha nincs elég nagy SD-kártyád, akkor kihagyhatod az opcionális `MLC` részt, amely a mentési fájlokat és a játékadatokat tartalmazza, és a legtöbb brickelődés helyreállításához nincs rá szükség. - -> A NAND biztonsági mentés visszaállítása a Wii U-n további hardvert és mikroforrasztási ismereteket igényel.
A NAND biztonsági mentés készítése azonban **mindig** hasznos, ezért ne hagyd ki.
A NAND biztonsági mentés egyedi a rendszeredre. Mentések más konzolokról **nem fognak működni**.**. - -1. Navigál keresztül a Homebrew Launcher-en, majd indítsd el a `Wii U NAND Dumper` appot. -1. Használd a Wii U GamePad D-Pad-ját a következő konfiguráció megadásához: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Nyomj A gombot a dumpolás elindításához. -1. Ha a folyamat befejeződött, kapcsold ki a Wii U-dat, vedd kiaz SD kártyád a Wii U-ból és dugd be a PC-dbe. -1. Hogy biztos lehess, hogy nem veszted el a fájlokat, másold az `slc.bin`, az `slccmpt.bin`, a `seeprom.bin` és az `otp.bin`fájlokat és ha teljes mentést választottál, akkor `minden mlc.bin.part` fájlt is a számítógépedre. -1. Töröld a fájlokat az SD kártyádról helyfelszabadítás végett. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index 8268992bb57..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archív - Mocha - Online Exploit - -!> **EZ A METÓDUS MÁR NEM TÁMOGATOTT** -**AZ AKTUÁLIS METÓDUS ELÉRHETŐ [ITT](../../../introduction)** - -## SD kártya előkészítés {docsify-ignore} - -A szükséges CFW fájlokat és néhány további homebrew fájlt rakunk majd az SD kártyára. - -> **Fontos** Az SD kártyád FAT32-re kell legyen formázva. Ha az SD kártyád nem FAT32-re formázott, használd a [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm)-ot 32k (32768) allocation unit size-zal a formázáshoz. **Ne** cimkézd az SD kártyát `wiiu`-nak, különben problémát okoz a homebrew-nak. - -### Amire szükséged van {docsify-ignore} - -- A Mocha konfiguráció. -- A [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest) legutolsó kiadása. - - A `payload.zip` fájlt kell letöltened. -- A [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) 1.4-es kiadása. - - A The Homebrew Launcher v1.4 kiadását, a `homebrew_launcher.v1.4.zip` fájlt kell letöltened. -- A [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip) legutolsó kiadása. -- A [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip) legutolsó kiadása. -- A [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest) legutolsó kiadása. - - A `wiiu-extracttosd.zip` fájlt kell letöltened. -- A [Mocha](https://wiiubru.com/appstore/zips/mocha.zip) legfrissebb kiadása. -- A legutolsó kiadása a SaveMii Mod-nak. - -### Lépések {docsify-ignore} - -?> **Megjegyzés** Az info.json és a manifest.install fájlok nem szükségesek a moddolási folyamathoz, így törölhetők. - -1. Helyezd be a Wii U-d SD kártyáját a PC-dbe. -1. Másold a `wup_installer_gx2.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `nanddumper.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `wiiu-extracttosd.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `homebrew_launcher.v.1.4.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `mocha.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `savemii_mod.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a `config.ini` fájlt a `/wiiu/apps/mocha` mappába az SD kártyádon. -1. Másold a `payload.elf` fájlt a `payload.zip` fájlból a `wiiu` mappába az SD kártyádon. ----------- - -### SD kártya kiosztás - -
-Kattints ide a végső SD kártya kiosztás megtekintéséhez. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Minden más app, mint disc2app, nanddumper, stb. is itt kell legyen) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 1d106543229..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Kezdőlap](../../../introduction) -- [CFW választása](../../cfw-choice) -- [Válassz egy Belépési pontot](../entrypoint-choice) -- [SD kártya előkészítés](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Egy NAND mentés készítése](nand-backup) -- [A CFW indítása](launching-cfw) -- **Linkek** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Fordítás](https://icongr.am/material/translate.svg?color=808080&size=16)Fordítás](https://hacks-guide.crowdin.com/u/projects/10) -- [Támogatás](../../../donations) -- [Névjegy](../../../about) \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/mocha/sidebar.md b/translations/hu_HU/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index 2dd0b6ec052..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Kezdőlap](../../introduction) -- [CFW választása](../cfw-choice) -- [Válassz egy Belépési pontot](entrypoint-choice) -- **Linkek** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Fordítás](https://icongr.am/material/translate.svg?color=808080&size=16)Fordítás](https://hacks-guide.crowdin.com/u/projects/10) -- [Támogatás](../../donations) -- [Névjegy](../../about) \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/sidebar.md b/translations/hu_HU/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 63116894f44..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archív** -- [Kezdőlap](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii moddolás (régi)](vwii/sd-preparation) -- [Legacy metódusok](cfw-choice) -- **Linkek** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Fordítás](https://icongr.am/material/translate.svg?color=808080&size=16)Fordítás](https://hacks-guide.crowdin.com/u/projects/10) -- [Támogatás](../../donations) -- [Névjegy](../../about) -- **Adatvédelem** -- [Adatvédelmi szabályzat](../../privacy-policy) diff --git a/translations/hu_HU/docs/user-guide/archive/tiramisu/autoboot.md b/translations/hu_HU/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index cdd1c065aa8..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## A Tiramisu automatikus bootolása - -Jelenleg, mindig amikor indítani szeretnéd az Tiramisu-t, el kell indítanod a Healt and Safety Information appot. Ha szeretnéd, hogy a Tiramisu minden bootoláskor betöltődjön, akkor autobootolhatod a Healt and Safety Information appot. - -### Lépések - -1. Indítsd el a konzolt, bootolj a Wii U Menu-be és indítsd el a Health and Safety Information appot és tartsd nyomva az X gombot, hogy megnyisd az Environment Loader menüt. -1. Navigálj a D-Pad-del az `installer` környezetre és nyomj A gombot, az elindításához. -1. Nyomj A gombot a`Check` kiválasztásához. -1. Válaszd a `Boot options`.-t. -1. Megkérdezi, hogy szeretnéd-e megváltoztatni a boot címet. Nyomj A-t a `Switch to PayloadLoader` kiválasztásához. -1. Ha a folyamat befejeződött, nyomj A gombot a konzol leállításához. -1. A PayloadLoader most már minden bootláskor el lesz indítva. - - Az alapértelmezett bootoláskor indított cím módosításához tartsd nyomva a Start (+) gombot a Gamepad-en, amíg bootolod a konzolt. Nem tudod módosítani a bootoláskor címet, amíg be nem állítottad az alapértelmezett környezetet előtte. - - A D-Pad-del navigálva állj rá a címre amit autobootolni szeretnél és nyomj Y gombot, hogy beállítsd az autoboot címnek. - - Nyomj A gombot a kiválasztott cím indításához. - diff --git a/translations/hu_HU/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/hu_HU/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index 57f0fb252ff..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Legyél biztos abban, hogy a Wii U rendekezik internet hozzáféréssel ehhez a lépéshez. - -### Lépések - -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Indítsd el az Internet Browser-t és navigálj a `wiiuexploit.xyz` oldalra. -1. Kattints a `Run Exploit!` gombra és tartsd nyomva a B gombot, addig, amíg a képernyőd ki nem írja `Please choose your payload:`, ez szükséges a következő lépésekhez. - - Ha a Wii U-d megakad egy fehér vagy más módon lefagyott képernyőn, várj néhány másodpercet. Ha semmi nem történik, bootold újra konzolt, [állítsd a böngésző mentés adatot alaphelyzetbe](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) és próbáld újra. - - Ha az EnvironmentLoader-t látod, nem nyomtad elég hosszú ideig a B gombot. Próbáld újra. - diff --git a/translations/hu_HU/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/hu_HU/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index ade77654be7..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Telepítés véglegesítése - -Most, hogy a PayloadLoader, az Environment Loader and és az Tiramisu telepítésre került, véglegesítjük a telepítést. - -Be fogjuk állítni a Tiramisu környezetet, hogy automatikusan induljon, amikor a konzol autobootolja a Health and Safety Information app-ot (vagy amikor kézzel indítod, mert nem lett autoboot beállítva) és kiválasztjuk a Wii U Menu-t alapértelmezettként, és néhány további homebrew appot telepítünk. - -### A PayloadLoader, az Environment Loader és a Tiramisu telepítése - -1. Kapcsold be a Wii U-d. - - Az Environment Loader-nek kell megjelennie. -1. A D-Pad-et használva, navigálj az `tiramisu`-hoz és nyomj Y gombot, hogy beállítsd ezt az alapértelmezett környezetednek, majd nyomj A gombot a Tiramisu indításához. - - Előfordulhat, hogy egy piros figyelmeztető képernyőt kapsz, hogy a frissítések nem lettek megfelelően blokkolva. Nyomj A gombot a folytatáshoz mindenképp. Blokkolni fogjuk a frissítéseket "A frissítések blokkolása" fejezetben később. - - A Environment Loader megnyitásához a jövőben tartsd nyomva az X gombot, amíg a Wii U bebootol. -1. A Tiramisu Boot Selector-ban a `Wii U Menu`-nek kell beállítva lennie, nyomj Y-t, hogy beállítsd alapértelmezett autoboot opciónak, majd nyomj A gombot, hogy elindítsd a Wii U Menu-t. - - A Tiramisu Boot Selector megnyitásához a jövőbn tartsd nyomva a START (+) gombot, amíg a Wii U bebootol. - -?> Ha bebootoltált a Tiramisu környezetbe, megnyithatod a Mii Maker-t bármikor, hogy a Homebrew Launcher-be juss.
A Homebrew Launcher üres lesz az első alkalommal moddolók számára. Kövesd az útmutató többi részét arról, hogyan telepíthetsz alkalmazásokat a Homebrew Launcher-be.
A Mii Maker-hez visszatéréshez csak simán nyomd meg a HOME gombot a Homebrew Launcher-ben. - -### Frissítések blokkolása -Habár a Tiramisu PayloadLoader-e már rendelkezik beépített blokkolás funkcionalitással, ajánlott, hogy töröld az update mappát, hogy effektíven blokkold a rendszer frissítéseket. Ha egy piros figyelmezető képernyőt kapsz, az Tiramisu-ra bootolás közben, akkor az update folder még mindig létezik, és ajánlott a törlése [ezen](../block-updates) útmutató alapján. - -### További Homebrew Appok - -- A **SaveMii Mod WUT Port** egy homebrew app ami lehetővé eszi a Wii U és vWii mentés adatok kezelését. -- A **Bloopair** egy Tiramisu modul, ami lehetővé teszi a vezetéknélküli csatlakoztatását a legnépszerűbb Bluetooth képes kontrollereknek. Tekintsd meg [ezt az oldalt](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) további részletekért. -- A **Homebrew Appstore** lehetővé teszi, hogy tallózd és letölts homebrew appokat követlenül a Wii U-dról. - -### További Homebrew Appok - Amire szükséged van - -- A [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip) legutolsó verziója. -- A [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases) legutolsó verziója. -- A [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/) `wiiu-extracttosd.zip`-je. - -### További Homebrew appok - Fájlok kicsomagolása az SD kártyára - -1. Másold a `SaveMiiModWUTPort.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Csomagold ki a tartalmát a frissen letöltött `Bloopair_vX.X.X.zip` fájlnak. - Másold a `30_bloopair.rpx` fájlt a `/wiiu/environments/tiramisu/modules/setup/` mappába az SD kártyádon. - Másold a `wiiu` mappát az SD kártyád gyökerébe. -1. Másold a frissen letöltött `wiiu-extracttosd.zip` fájl tartalmát az SD kártyád gyökerébe. diff --git a/translations/hu_HU/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/hu_HU/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index ef04ce45994..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## A PayloadLoader telepítése - -Most, hogy megvan a NAND biztonsági mentésed arra az esetre, ha később bármi rosszul sülne el, telepítheted a PayloadLoader-t a rendszeredre. - -A PayloadLoader telepítése lehetővé teszi Tiramisu elérését egyszerűen az Health and Safety Information app futtatásával. - -> A gyári visszaállítás **nem** távolítja el a beillesztett PayloadLoader-t. Kövesd a [PayloadLoader eltávolítását](../../uninstall-payloadloader) a PayloadLoader törléséhez. - -### Lépések - -?> Ha már bebootoltál Tiramisu-ba, indítsd újra a konzolt, mielőtt újra futtatod az exploitot. - -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Végezd el a webböngésző exploitot a [korábban ismertetett módon](browser-exploit), de ezúttal az X gombot nyomva kell tartanod, hogy megnyíljon az Environment Loader menü. -1. Navigálj a D-Pad-del az `installer` környezetre és nyomj A gombot, az elindításához. -1. Nyomd meg az A gombot, hogy ellenőrizd, hogy telepíthető-e a PayloadLoader. - - Most már azt kell jeleznie, hogy a PayloadLoader telepíthető a Health and Safety Information apphoz. -1. Nyomj A gombot az `Install / Update` kiválasztásához. -1. Rá fog kérdezni, hogy biztosan telepíteni akarod-e a PayloadLoader-t. Használd a D-Pad-et az `Install` kiválasztásához és nyomj A gombot. -1. Ha a telepítés befejeződött, nyomj A gombot, hogy teljesen leállítsd a konzolt. - -!> Ha nem szeretnéd autobootolni a Tiramisu-t a konzolodon, akkor kihagyhatod `A Tiramisu autobootolása` részt, és mehetsz tovább a rögtön a [Telepítés véglegesítésére](finalizing-setup). \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/hu_HU/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 066b7e5e7e1..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Egy NAND mentés készítése - -Ha a későbbi folyamat során bármi rosszul sülne el, és a Wii U brickelődne, a korábban készített NAND biztonsági mentés visszaállításával megoldható a probléma. - -### Lépések - -> A Wii U NAND-ja (modelltől függően) 8 vagy 32 GB-os. Ennek következtében ahhoz, hogy teljes biztonsági mentést készíthess a konzol NAND-járól, az SD-kártyának nagyobbnak kell lennie, mint a NAND mérete. Ha nincs elég nagy SD-kártyád, akkor kihagyhatod az opcionális `MLC` részt, amely a mentési fájlokat és a játékadatokat tartalmazza, és a legtöbb brickelődés helyreállításához nincs rá szükség. - -> A NAND biztonsági mentés visszaállítása a Wii U-n további hardvert és mikroforrasztási ismereteket igényel.
A NAND biztonsági mentés készítése azonban **mindig** hasznos, ezért ne hagyd ki.
A NAND biztonsági mentés egyedi a rendszeredre. Mentések más konzolokról **nem fognak működni**.**. - -1. Navigál a `nanddumper`-hez a GamePad-del és nyomj A-t az indításához. -1. Használd a Wii U GamePad D-Pad-ját a következő konfiguráció megadásához: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Nyomj A gombot a dumpolás elindításához. -1. Ha a folyamat befejeződött, kapcsold ki a Wii U-dat, vedd kiaz SD kártyád a Wii U-ból és dugd be a PC-dbe. -1. A fájlok az SD kártya gyökerében fognak megjelenni. -1. Hogy biztos lehess, hogy nem veszted el a fájlokat, másold az `slc.bin`, az `slccmpt.bin`, a `seeprom.bin` és az `otp.bin`fájlokat (és ha teljes mentést választottál, akkor `minden mlc.bin.part` fájlt is) a számítógépedre. -1. Töröld a fájlokat az SD kártyádról helyfelszabadítás végett. - -?> **Ha a PayloadLoader már telepített a Health and Safety Information app-ba, akkor a konzolod már autobootolja azt, nem szükséges folytatnod az útmutatót.** diff --git a/translations/hu_HU/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/hu_HU/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index be75bfdbe48..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD kártya előkészítés - -A szükséges CFW fájlokat és néhány további homebrew fájlt rakunk majd az SD kártyára. - -> **Fontos** Az SD kártyád FAT32-re kell legyen formázva. Ha az SD kártyád nem FAT32-re formázott, használd a [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm)-ot 32k (32768) allocation unit size-zal a formázáshoz.
**Ne** cimkézd az SD kártyát `wiiu`-nak, különben problémát okoz a homebrew-nak. - -### Mire van szükséged - -- A legutolsó fájlok az [Tiramisu for your café](https://tiramisu.foryour.cafe) oldalról. - - Kattints a `Download Tiramisu`-ra. -- A [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases) legutolsó kiadása. - - A `01_sigpatches.rpx` fájlt kell letöltened. - -### Lépések - -1. Helyezd be a Wii U-d SD kártyáját a PC-dbe. -1. **Csomagold ki** és másold a tartalmát a frissen letöltött Tiramisu*`.zip`* fájlból az SD kártyád gyökerébe. -1. Másold a `01_sigpatches.rpx` fájlt a `/wiiu/environments/tiramisu/modules/setup` útvonalra az SD kártyádon. - -?> Ha a számítógép rákérdezz, hogy felülírjuk-e a létező fájlokat az SD kártyán, akkor kattints a Igen-re. - - Ha Mac számmítógépet használsz, válaszd a `Merge` opciót a csere helyett. - ----------- - -### SD kártya kiosztás - -
-Kattints ide a végső SD kártya kiosztás megtekintéséhez. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (Minden más appnak is itt kell lennie.) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/hu_HU/docs/user-guide/archive/tiramisu/sidebar.md b/translations/hu_HU/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index d0c1201b1d7..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Kezdőlap](../../introduction) -- [SD kártya előkészítés](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Egy NAND mentés készítése](nand-backup) -- [A PayloadLoader telepítése](installing-payloadloader) -- [A Tiramisu automatikus bootolása](autoboot) -- [Telepítés véglegesítése](finalizing-setup) -- **Linkek** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Fordítás](https://icongr.am/material/translate.svg?color=808080&size=16)Fordítás](https://hacks-guide.crowdin.com/u/projects/10) -- [Támogatás](../donations) -- [Névjegy](../about) diff --git a/translations/hu_HU/docs/user-guide/archive/vwii/browser-exploit.md b/translations/hu_HU/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 2673e5a808a..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Egy exploit indítása ---- -Ahhoz, hogy telepítsd a Homebrew Channel-t először egy NAND mentést kell létrehozni, a Homebrew Launcher elindításához meg egy exploit szükséges, mint például a Browser exploit. - -Legyél biztos abban, hogy a Wii U rendekezik internet hozzáféréssel ehhez a lépéshez. - -### Lépések {docsify-ignore} - -1. Indíts el egy választásod szerinti exploit-ot: - - Ha még soha nem futtattál homebrew-t, az "exploit indítása" azt jelenti, hogy futtasd a Browser Exploit-ot. A Browser Exploit futtatásához indítsd el az Internet böngészőt és navigálj a `wiiuexploit.xyz` weboldalra, majd kattints a `Run Exploit!` gombra - - Ha a Wii U-d megakad egy fehér vagy más módon lefagyott képernyőn, várj néhány másodpercet. Ha semmi sem történik, indítsd újra a konzolt, [állítsd vissza a böngésző mentési adatait](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history), és próbáld meg újra. - - - Ha hidegbootolsz a PayloadLoader-be, "az exploit indítása" a konzolba bootolást jelenti. - - - Ha a PayloadLoader-be a Health & Safety alkalmazáson keresztül indít, az "exploit indítása" a Health & Safety alkalmazás indítását jelenti. - -1. A választott exploit elindítása közben tartsd lenyomva a B gombot (ha a `NAND biztonsági mentés` részt követed) vagy az X gombot (ha a `Homebrew csatorna telepítése` részt követed). diff --git a/translations/hu_HU/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/hu_HU/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 68e03bac6cc..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding útmutató {docsify-ignore-all} - -## Telepítés véglegesítése - -Most, hogy a szükséges cIOS-ek és az IOS80 patch telepítésre került, véglegestjük a telepítést. - -### További Homebrew appok - -- **SaveGame Manager GX** - segítségével menteni és visszatölteni tudod játékmentéseid és Mii-d, különösen azokat a mentéseket, amik általában nem másolhatók. -- **Nintendont** egy virtuális gép, ami lehetővé teszi számodra, hogy Gamecube játékokkal játsz. -- Az **Open Shop Channel** egy appstore, ahonnan letölthetsz további appokat. - -### További Homebrew appok - Amire szükséged van - -- A [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) legutolsó kiadása -- A `loader.dol`, a`meta.xml` és az `icon.png` fájlja a [Nintendont](https://github.com/GaryOderNichts/Nintendont)-nak -- Az [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) `Homebrew Browser.zip`-je - -### További Homebrew appok - Fájlok kicsomagolása az SD kártyára - -1. Csomagold ki és másold a `SaveGame_Manager_GX.zip`-et az SD kártya gyökerébe. -2. Kövesd a lépéseket a linkben a Nintendont másolásáról, görgess lefelé. -3. Csomagold ki a tartalmát a `homebrew_browser.zip`-nek az SD kártya gyökerébe. - -### USB loaderek - -Ahhoz, hogy Wii játék mentésekkel játszhass, szükséged van egy usv loader-re. Két elterjedt loader létezik, a WiiFlow Lite és a USB Loader GX. Mind kettő megtaláltató [ezen az oldalon](https://wii.hacks.guide/wii-loaders). - -### A Priiloader telepítése - -Igen, Priiloader most már működik a vWii-n! Az útmutató a telepítéséről [itt található meg](https://wii.hacks.guide/priiloader). - -!> Priiloader 0.10.0 előtti verziói nem működnek a vWii-vel. Priiloader 0.8.2 előtti verziói brickelik a vWii-det. diff --git a/translations/hu_HU/docs/user-guide/archive/vwii/installing-cioses.md b/translations/hu_HU/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index 9d68a9752a6..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding útmutató {docsify-ignore-all} - -## cIOS-ek telepítése - -1. Kapcsold be a Wii U-d és indítsd el a vWii-t. -2. Indítsd el a Homebrew Channel-t. -3. Indítsd el a d2x cIOS Installer-t. -4. Állíts be mindent úgy, hogy egyezzen a következőkkel: - - cIOS: `d2x-v11-beta1-vWii` - - cIOS base: `56` - - cIOS slot: `249` -5. Nyomj `A` gombot a telepítéshez. -6. Állíts be mindent úgy, hogy egyezzen a következőkkel: - - cIOS: `d2x-v11-beta1-vWii` - - cIOS base: `57` - - cIOS slot: `250` -7. Nyomj `A` gombot a telepítéshez. -8. Állíts be mindent úgy, hogy egyezzen a következőkkel: - - cIOS: `d2x-v11-beta1-vWii` - - cIOS base: `58` - - cIOS slot: `251` -9. Nyomj `A` gombot a telepítéshez. -10. Nyomj `B` gombot a kilépéshez. - -!> Ha csak a `d2x-v6`-ot vagy a `d2x-v11-beta1`-et kapod, töltsd le újra az appot és/vagy ellenőrizd, hogy az SD kártyád írható-e (nem lockolt). diff --git a/translations/hu_HU/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/hu_HU/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index c9df71d1f05..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding útmutató {docsify-ignore-all} - -## A Homebrew Channel telepítése - -1. Bootolj [Aromába](browser-exploit). -2. Indítsd el a vWii Compat Installer\`-t a Wii U Menu-ből. -3. Nyomj `A` gombot a Homebrew Channel telepítéséhez és várjm amg megjelenik az `Install succeeded` felirat. Ezt követően nyomj HOME gombot a Wii U Menu-be visszatéréshez. -4. Indítsd el vWii-t (a Wii Menu ikon). - - Ha a telepítés sikeres volt látnod kell a Homebrew Channel-t a Wii Menu-dben. diff --git a/translations/hu_HU/docs/user-guide/archive/vwii/nand-backup.md b/translations/hu_HU/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index 845dfe3635d..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding útmutató {docsify-ignore-all} - -## NAND mentés - -Abban az esetben, ha valami később elromlik a folyamat során és a vWii brickelődik, egy korábban készített NAND mentés helyreállítása megjavíthatja azt, vagy teljesen [újratelepítheted a vWii-t](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> Ha most készítettél egy NAND mentést, ami tartalmazza a SLCCMPT-t és az OTP-t, akkor nyugodtan ugrod át ezt a részt. - -1. Indítsd el a [Wii U NAND Dumper](browser-exploit)-t. -2. Használd a Wii U GamePad D-Pad-ját a következő konfiguráció megadásához: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Nyomj A gombot a dumpolás elindításához. -4. Ha a folyamat befejeződött, kapcsold ki a Wii U-dat, vedd kiaz SD kártyád a Wii U-ból és dugd be a PC-dbe. -5. Hogy biztos lehess, hogy nem vezted el a fájlokat, másold az `slccmpt.bin` és `otp.bin` fájlokat (és ha teljes mentést választottál, akkor a `seeprom.bin`, az `slc.bin`, és `minden mlc.bin.part` fájlt is) a számítógépedre. -6. Töröld a fájlokat az SD kártyádról helyfelszabadítás végett. -7. Vedd ki az SD kártyád a számítógépedből és rakd be a Wii U konzolodba. diff --git a/translations/hu_HU/docs/user-guide/archive/vwii/patching-ios80.md b/translations/hu_HU/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 74473518ae3..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding útmutató {docsify-ignore-all} - -## IOS 80 foltozása (opcionális) - -Az IOS 80 foltozása lehetővé teszi, hogy egyéni csatornák legyenek az SD-kártyán, beleértve a wadokat is. Ez azonban nem kötelező. - -!> Ha bármilyen okból a Wii U kikapcsolódik az IOS 80 patchelése közben, a vWii brickelődik. Ez úgy javítható úgy, hogy vagy kicsomagolod az IOS 80-at a korábban készített NAND biztonsági mentésedből, majd FTP-n keresztül kicseréled, vagy [újratelepíted az IOS 80-at](../../recover-vwii-ioses-channels). - -1. Indítsd el a Patched IOS 80 Installer for vWii-t. -2. Olvasd el a figyelmeztető képernyőt és várj 30 másodpercet. -3. Nyomj meg tetszőleges gombot a telepítéshez. -4. Várj amíg az nem mondja, hogy IOS80 Installation is complete!. -5. Nyomj meg egy tetszőleges gombot a kilépéshez. - -!> Egy egyéni System Menu telepítése határozottan brick kockázatot jelent, és mindig kell, hogy legyen egy múködő biztonsági mentésed, mielőtt telepítesz, de ha jól csinálod, nem fogod brcikelni a vWii-t. - -!> Bármilyen IOS (beleértve a TED IOS-eket is) vagy az eredeti Wii-re készült wads telepítése a vWii-re brickeli azt. A WiiWare wads-ok rendben vannak, de néhányat konvertálni kell a működéshez. diff --git a/translations/hu_HU/docs/user-guide/archive/vwii/sd-preparation.md b/translations/hu_HU/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 10eb4c94470..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding útmutató {docsify-ignore-all} - ---- - -## SD kártya előkészítés - -Ez az oldal végig vezet a vWii-d moddolásának folyamatán. - -A szükséges Homebrew fájloknak az SD kártyára helyezésével kezdjük. - -?> **Fontos** -Az SD kártyád FAT32-re kell legyen formázva. Ha az SD kártyád nem FAT32-re formázott, használd a [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm)-ot 32k (32768) allokációs egység mérettek a formázáshoz. **Ne** cimkézd az SD kártyát `wiiu`-nak, különben problémát okoz a homebrew-nak. - -?> Ha korábban hackelted már a Wii U-t, akkor ugyanazt az SD-kártyát használhatod ehhez a folyamathoz. - -?> A Wii U homebrew-val ellentétben a vWii alkalmazások egy külön alkalmazás mappába kerülnek a gyökérben. A Compat Installer az **egyetlen** Wii U alkalmazás itt. - -### Mire van szükséged - -- Az [Aroma for your café](https://aroma.foryour.cafe) oldalról a legutolsó fájlok. - - Kattints a `Download Payloads` és a `Download Base Aroma` opciókra. - - Olvasd el a lépéseket, és kattintsd be a jelölő négyzeteket. - - Ha már telepítetted az Aroma-t, nem kell újra letöltened. -- A [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller) legutolsó verziója. -- A Patchelt IOS 80 Installer for vWii. ([Forrás](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- A d2x cIOS Installer. - -## Lépések - -1. Helyezd be a Wii U-d SD kártyáját a PC-dbe. -2. Másold az `apps` mappát a `Patched_IOS80_Installer_for_vWii.zip` fájlből, az SD kártyád gyökerébe. -3. Másold a `d2x-cios-installer` fájlt a `d2x_cIOS_Installer.zip` fájlból az SD kártyád gyökeréből nyíló apps mappába. -4. Másold a letöltött Base Aroma és payloads.zip fájlok tartalmát az SD kártyád gyökerébe. -5. Másold a CompatTitleInstaller.zip fájl tartalmát az SD kártyád gyökerébe. -6. Vedd ki az SD kártyát a számítógépedből, és dubd be a Wii U konzolodba. diff --git a/translations/hu_HU/docs/user-guide/archive/vwii/sidebar.md b/translations/hu_HU/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 046544ded76..00000000000 --- a/translations/hu_HU/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Moddolás** - -- [Kezdőlap](../../introduction) -- [SD kártya előkészítés](sd-preparation) -- [NAND mentés](nand-backup) -- [A Homebrew Channel telepítése](installing-homebrewchannel) -- [cIOS-ok telepítése](installing-cioses) -- [IOS 80 patchelés(Opcionális)](patching-ios80) -- [Telepítés véglegesítése](finalizing-setup) -- **Linkek** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Fordítás](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Adományozás](../donations) -- [Névjegy](../about) diff --git a/translations/hu_HU/docs/user-guide/aroma/autoboot.md b/translations/hu_HU/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index f1d4175c4d7..00000000000 --- a/translations/hu_HU/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Az Aroma automatikus bootolása - -Jelenleg, mindig amikor indítani szeretnéd az Aroma-t, el kell indítanod a Healt and Safety Information appot. Ha szeretnéd, hogy az Aroma minden bootoláskor betöltődjön, akkor autobootolhatod a Healt and Safety Information appot. - -Ha nem szeretnéd autobootolni az Aromát, akkor átugorhatod ezt a lépést és folytathatot a PayloadLoader telepítése résszel alább. - -### Lépések - -1. Indítsd el a konzolt hogy bebootolj a Wii U Menübe, és indítsd el a Health and Safety Information appot. -2. Nyomj A-t az `aroma` környezet indításához. -3. Nyomj A-t a Wii U Menu indításához. -4. Ha már a Wii U Menu-ben vagy indítsd el a PayloadLoader Installer-t. -5. Nyomj A-t a `Check` opció kiválasztásához. -6. Válaszd a `Boot options`-t. -7. Megkérdezi, hogy szeretnéd-e megváltoztatni a boot címet. Nyomj A-t a `Switch to PayloadLoader` kiválasztásához. -8. Ha a folyamat befejeződött, nyomj A gombot a konzol leállításához. -9. A PayloadLoader most már minden bootláskor el lesz indítva. - -### A PayloadLoader, azEnvironment Loader és az Aroma telepítése - -Most azt fogjuk elérni, hogy az Aroma környezet automatikusan elinduljon, amikor a konzol betölti az Health and Safety Information alkalmazást, és kiválassza a Wii U Menu-t alapértelmezett indítási opciónak. - -1. Az EnvironmentLoader indítása. - - Ha autobootolod a PayloadLoader-t, akkor csak kapcsold be a Wii U-d. - - Ha átlépted az autoboot lépéseket, akkor indítsd el a Health and Safety Information appot. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - Az Environment Loader megnyitásához a jövőben nyomva kell tartanod az X gombot amíg a Wii U bootol vagy tölti a Health and Safety Information appot. - -3. Az Aroma Boot Selector-ban a `Wii U Menu`-nek kell beállítva lennie, nyomj Y-t, hogy beállítsd alapértelmezett autoboot opciónak, majd nyomj A gombot, hogy elindítsd a Wii U Menu-t. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Az Aroma most már elindul minden alkalommal, amikor bebootolsz a konzolba (vagy betöltöd a Health and Safety alkalmazást) és rögtön utána a Wii U Menu-be. - - Az Aroma Boot Selector megnyitásához a jövőben nyomva kell tartanod a START (+) gombot amíg a Wii U bootol vagy tölti a Health and Safety Information appot. - - A D-Pad-del navigálva állj rá a címre amit autobootolni szeretnél és nyomj Y gombot, hogy beállítsd az autoboot címnek. - - Nyomj A gombot a kiválasztott cím indításához. diff --git a/translations/hu_HU/docs/user-guide/aroma/browser-exploit.md b/translations/hu_HU/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 305e3f69e25..00000000000 --- a/translations/hu_HU/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Legyél biztos abban, hogy a Wii U rendekezik internet hozzáféréssel ehhez a lépéshez. - -### Lépések - -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -2. Indítsd el az Internet Browser-t és navigálj a `wiiuexploit.xyz` oldalra. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - Ha a Wii U-d megakad egy fehér vagy más módon lefagyott képernyőn, várj néhány másodpercet. Ha semmi nem történik, bootold újra a konzolod, [töröld a böngésző előzményeit](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) és próbáld újra. - - Ha az EnvironmentLoader-t látod, nem nyomtad elég hosszú ideig a B gombot. Próbáld újra. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/hu_HU/docs/user-guide/aroma/finalizing-setup.md b/translations/hu_HU/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index 1c69d1f1498..00000000000 --- a/translations/hu_HU/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Telepítés véglegesítése - -Most, hogy a PayloadLoader, az Environment Loader és az Aroma telepítésre került, véglegesítjük a telepítést. - -### További Homebrew Appok - -?> Minden homebrew alkalmazás a Wii U Menu-ből kerül betöltésre Aromán. - -- A **SaveMii Mod WUT Port** egy homebrew app ami lehetővé eszi a Wii U és vWii mentés adatok kezelését. -- A **Bloopair** egy Aroma modul, ami lehetővé teszi a vezetéknélküli csatlakoztatását a legnépszerűbb Bluetooth képes kontrollereknek. Tekintsd meg [ezt az oldalt](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) további részletekért. -- A **Homebrew Appstore** lehetővé teszi, hogy tallózz és letölts homebrew appokat követlenül a Wii U-dról. - -### További Homebrew Appok - Amire szükséged van - -- A [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip) legutolsó verziója. -- A [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/) `wiiu-extracttosd.zip`-je. - -### További Homebrew appok - Fájlok kicsomagolása az SD kártyára - -1. Másold a `SaveMiiModWUTPort.zip` fájl tartalmát az SD kártyád gyökerébe. -1. Másold a frissen letöltött `wiiu-extracttosd.zip` fájl tartalmát az SD kártyád gyökerébe. - -### Ajánlott Plugin-ek - -| Név | Leírás | Telepítési lépések | -| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Letöltés](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | FTP szervert futtat a háttérben. | 1. Csomagold ki a letöltött `ftpiiu_vX_X.zip` fájlt.
2. Másold a `ftpiiu.wps` fájlt a `wiiu/environments/aroma/plugins` útvonalra az SD kártyádon. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Letöltés](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Lehetővé teszi a játékok moddolását, a fájlok SD kártyára átirányításával. | 1. Csomagold ki a letöltött `sdcafiine_vX_X_X.zip` fájlt.
2. Másold a `sdcafiine.wps` fájlt a `wiiu/environments/aroma/plugins` útvonalra az SD kártyádon. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Letöltés](https://github.com/GaryOderNichts/Bloopair/releases)) | Lehetővé teszi az elterjed Bluetooth képes kontrollerek vezeték nélküli csatlakozatását. | 1. Csomagold ki a tartalmát a frissen letöltött `Bloopair_vX.X.X.zip` fájlnak.
2. Másold a `30_bloopair.rpx` fájlt a `wiiu/environments/aroma/modules/setup/` útvonalra az SD kártyádon.
3. Másold a `wiiu` mappa tartalmát az SD kártyád gyökerébe. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Letöltés](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Lehetővé teszi a képernyőképed közvetlenül SD kártyára készítését. | 1. Csomagold ki a letöltött `screenshot_plugin_vX_X.zip`fájlt.
2. Másold a `screenshot.wps` fájlt a `wiiu/environments/aroma/plugins` útvonalra az SD kártyádon. | - -### Pretendo Network - -A Pretendo a Nintendo Network helyettesítő szolgáltatása, amely a megszűnt online szolgáltatásokat hozza vissza. Emellett a Miiverse szolgáltatást is feléleszti a Juxtaposition-on keresztül. A hivatalos útmutatót [itt](https://pretendo.network/docs/install/wiiu) találod. - -### Tiramisu bootolása (opcionális) - -?> A Tiramisu már archivált, mert kiváltotta az Aroma és elavultnak tekinthető. Nem kerül hozzá új homebrew fejlesztésre, és a szolgáltatások, mint a Pretendo befejezték a támogatását. - -Azonban ha szükséged lenne arra, hogy Tiramisu-ra bootolj, például egy legacy homebrew app miatt, a következőket tedd: - -1. Tölds le a letutolsó fájlokat [Tiramisu for your café](https://tiramisu.foryour.cafe) oldalról. -1. Másold a `wiiu` mappa tartalmát az SD kártyád gyökerébe. - - A mappának egyesülnie (merge) kell a meglévő `wiiu` mapp tartalmával, ha ez nem történne meg automatikusan. -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -1. Indítsd el az EnvironmentLoader-t. - - Ha autobootolsz bele, akkor ez megtehető az X gomb nyomva tartása mellett bekapcsolt konzollal. - - Nincs szükséged a PayloadLoader újratelepítésére, ha már telepítetted az Aromával. -1. Válaszd ki a D-Pad-del a `tiramisu`-t. -1. Az A gomb megnyomásával indítsd el Tiramisu-t. -1. Az A gomb megnyomásával indítsd el a Wii U Menu-t. - - Ha szeretnéd, hogy a konzol autobootoljon a Wii U Menu-be, amikor tölti a Tiramisu környezetet, nyomj Y-t. -1. Homebrew Launcher a Mii Maker app indításával tölthető be. diff --git a/translations/hu_HU/docs/user-guide/aroma/getting-started.md b/translations/hu_HU/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index 799d11add91..00000000000 --- a/translations/hu_HU/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Az Aroma egy fejlesztés alatt álló környezet a Tiramisu utódja. - -### Mi az Aroma? - -Az Aroma a Tiramisuhoz hasonló környezet, amely a Environment Loader segítségével indítható. -Az Aroma, akárcsak a Tiramisu, ugyanazt a Mocha verziót használja, támogatja a telepítőmodulokat, és tartalmazza az Autoboot modult, amely tartalmazza a boot választó és a gyorsindítás támogatását. -Az Aroma számos további funkcióval rendelkezik, beleértve a plugin rendszert és a homebrews-ok indításának új módját és sok beépített modult és plugint (pl. régió felszabadító patchek). - -### Mit tudok az Aromával csinálni? - -Részletesebb áttekintésért tekintsd meg [ezt a blogpostot](https://maschell.github.io/homebrew/2022/09/05/aroma.html). Egy gyors összefoglaló alább. - -#### Modulok - -Az Aroma támogatja a modulokat, amelyek a beállítási modulokkal ellentétben mindig a háttérben futnak. -Ez lehetővé teszi a konzol funkcionalitásának további bővítését. - -#### Plugin-ek - -A pluginok a modulokhoz hasonlóan szintén a háttérben futnak. -Ezek a konzol élményét növelhetik a konzol megváltoztatásával és további funkciók biztosításával. -A pluginok egy konfigurációs menü segítségével konfigurálhatók, amely egy gombkombinációval nyitható meg. - -#### Wii U Homebrew Bundle-ök - -A Wii U Homebrew Bundles (WUHB) a homebrew indításának új módja. -Ezek a `.wuhb` fájlok tartalmazzák a fő futtatható fájlt, és közvetlenül tartalmazhatnak ikon- és bannerképeket, valamint további tartalmakat. -A `homebrew_on_menu` pluginnel a WUHB fájlok közvetlenül a Wii U menüjéből indíthatók, akárcsak a hivatalos csatornák. - -### Mik a korlátozások? - -Technikai korlátozások miatt sok régi homebrew alkalmazás már nem fog működni az Aromával. -Ez vonatkozik az összes `.elf` homebrew-ra, de néhány `.rpx` homebrew-ra is (pl. RetroArch), amelyek nem valósítják meg megfelelően a szükséges funkciókat. -Ezeket a homebrew programokat frissíteni kell az Aroma támogatásával. A régi homebrew-ok futtatásához a Tiramisu környezetet kell elindítani. -A homebrew-ok indítása a már elavult Homebrew Launcher segítségével már nem lehetséges az Aroma segítségével. - -A fent említett korlátozások mellett, érdemes megjegyezni, hogy az Aroma még mindig csak béta kiadás. Nem mindent tesztelt még, és tovább problémák még előkerülhetnek. Ez nem jelenti azt, hogy az Aroma instabil, de van rá esély, hogy azt tapasztalod, hogy valami nem megfelelően működik. diff --git a/translations/hu_HU/docs/user-guide/aroma/installing-payloadloader.md b/translations/hu_HU/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 07fad3415b6..00000000000 --- a/translations/hu_HU/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## A PayloadLoader telepítése - -Most, hogy megvan a NAND biztonsági mentésed arra az esetre, ha később bármi rosszul sülne el, telepítheted a PayloadLoader-t a rendszeredre. - -A PayloadLoader telepítése lehetővé teszi az Aroma elérését egyszerűen az Health and Safety Information app futtatásával. - -!> A gyári visszaállítás **nem** távolítja el a beillesztett PayloadLoader-t. PayloadLoader eltávolításához kövesd [a PayloadLoader eltávolítását](../../uninstall-payloadloader). - -### Lépések - -?> Ha már be vagy bootolva az Aromába, akkor ugorhatsz az 5. lépésre. - -1. Vedd ki az SD kártyát a számítógépedből, és dugd be a Wii U konzolodba. -2. Végezd el a webböngésző exploitot a [korábban ismertetett módon](browser-exploit), de ezúttal az X gombot nyomva kell tartanod, hogy megnyíljon az Environment Loader menü. -3. Nyomj A-t az `aroma` környezet indításához. - ![](../docs/assets/img/guide/EL.png) - - Egy figyelmeztető üzentet fogsz kapni az update mappa létezéséről. **Ez normális.** Nyomj X-et a frissítések blokkolásához. - ![](../docs/assets/img/guide/Warn.png) -4. Nyomj A-t a Wii U Menu indításához. - ![](../docs/assets/img/guide/ABM.png) -5. A Wii U Menu-ben keresd meg az újonnan megjelent `PayloadLoader Installer` címet (egy rakéta mi egy dobozból jön ki), és indítsd el. - ![](../docs/assets/img/guide/PLLI.png) -6. Nyomd meg az A gombot, hogy ellenőrizd, hogy telepíthető-e a PayloadLoader. - - Most már azt kell jeleznie, hogy a PayloadLoader telepíthető a Health and Safety Information apphoz. -7. Nyomj A gombot az `Install / Update` kiválasztásához. -8. Rá fog kérdezni, hogy biztosan telepíteni akarod-e a PayloadLoader-t. Használd a D-Pad-et az `Install` kiválasztásához és nyomj A gombot. -9. Ha a telepítés befejeződött, nyomj A gombot, hogy teljesen leállítsd a konzolt. diff --git a/translations/hu_HU/docs/user-guide/aroma/nand-backup.md b/translations/hu_HU/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index e93683d1e31..00000000000 --- a/translations/hu_HU/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Egy NAND mentés készítése - -Ha a későbbi folyamat során bármi rosszul sülne el, és a Wii U brickelődne, a korábban készített NAND biztonsági mentés visszaállításával megoldható a probléma. - -### Lépések - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
A NAND biztonsági mentés készítése azonban **mindig** hasznos, ezért ne hagyd ki.
A NAND biztonsági mentés egyedi a rendszeredre. Backups from other consoles **won't** work without the required knowledge. - -1. Navigál a `nanddumper`-hez a GamePad-del és nyomj A-t az indításához. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Nyomj A gombot a dumpolás elindításához. -4. Ha a folyamat befejeződött, kapcsold ki a Wii U-dat, vedd kiaz SD kártyád a Wii U-ból és dugd be a PC-dbe. -5. Hogy biztos lehess, hogy nem veszted el a fájlokat, másold az `slc.bin`, az`slccmpt.bin`, a `seeprom.bin` és az `otp.bin` fájlokat (és ha teljes mentést választottál, akkor `minden mlc.bin.part` fájlt is) valami biztos helyre (Documents, Google Drive, OneDrive, stb.) a számítógépeden. - - Az SD kártya gyökerében fognak megjelenni. -6. Töröld az SD kártyádról a helyfelszabadítás végett ide másolt fájlokat. diff --git a/translations/hu_HU/docs/user-guide/aroma/sd-preparation.md b/translations/hu_HU/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index 3161cce7519..00000000000 --- a/translations/hu_HU/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD kártya előkészítés - -Először az Aroma fájlokat az SD kártyára rakjuk. - -> **Fontos** Az SD kártyád FAT32-re kell legyen formázva. Ha az SD-kártya nincs FAT32 formátumra formázva, használja a [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm)ot 32k (32768) kiosztási egységmérettel a formázáshoz. -**Ne címkézd** fel az SD kártyát `wiiu`-ként, különben problémákat okoz a homebrew-val. - -### Lépések - -1. Az [Aroma](https://aroma.foryour.cafe) oldalán görgess le a **Download** részig. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Kattints a `Download Payloads` és a `Download Base Aroma` opciókra. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Helyezd be a Wii U-d SD kártyáját a PC-dbe. -1. **Csomagold ki** és másold a `wiiu` mappát a kettő frissen letöltött *`.zip`* fájlból az SD kártyád gyökerébe. - - A `wiiu` mappákat mergelni kell, ha nem történik meg automatikusan. - -?> Ha a számítógép rákérdezz, hogy felülírjuk a létező fájlokat az SD kártyán, akkor kattints a Yes-re. - -?> Ha Mac számmítógépen vagy válaszd a `Merge` opciót a csere helyett. Ha a Merge opció nem jelenik meg azonnal, akkor tartsd nyomva az `Option` gombot, amíg mozgatod a gyökérbe a fájlokat. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD kártya kiosztás - -
-Kattints ide a végső SD kártya kiosztás megtekintéséhez. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (Minden egyéb appnak is itt kell lennie) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (Minden más .wms végű Aroma modulnak is itt kell lennie) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (Minden más .wps végű Aroma modulnak is itt kell lennie) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> Ha már telepítetted a PayloadLoader-t, rögtön mehetsz tovább [A telepítés véglegesítésére](./finalizing-setup.md) diff --git a/translations/hu_HU/docs/user-guide/aroma/sidebar.md b/translations/hu_HU/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index 37783b4e2fc..00000000000 --- a/translations/hu_HU/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Kezdőlap](../introduction) -- [A kezdeti lépések az Aromával](getting-started) -- [SD kártya előkészítés](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND mentés](nand-backup) -- [A PayloadLoader telepítése](installing-payloadloader) -- [Az Aroma automatikus bootolása](autobooting) -- [Telepítés véglegesítése](finalizing-setup) -- **Linkek** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Fordítás](https://icongr.am/material/translate.svg?color=808080&size=16)Fordítás](https://hacks-guide.crowdin.com/u/projects/10) -- [Támogatás](../donations) -- [Névjegy](../about) diff --git a/translations/hu_HU/docs/user-guide/cbhc/browser-exploit.md b/translations/hu_HU/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/hu_HU/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/cbhc/ds-vc-choice.md b/translations/hu_HU/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/hu_HU/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/hu_HU/docs/user-guide/cbhc/installing-hblc.md b/translations/hu_HU/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/hu_HU/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/cbhc/launching-cfw.md b/translations/hu_HU/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/hu_HU/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/cbhc/nand-backup.md b/translations/hu_HU/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/hu_HU/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/cbhc/sd-preparation.md b/translations/hu_HU/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/hu_HU/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hu_HU/docs/user-guide/cbhc/sidebar.md b/translations/hu_HU/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/hu_HU/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/cfw-choice.md b/translations/hu_HU/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/hu_HU/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/hu_HU/docs/user-guide/haxchi/browser-exploit.md b/translations/hu_HU/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/hu_HU/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/haxchi/ds-vc-choice.md b/translations/hu_HU/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/hu_HU/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/hu_HU/docs/user-guide/haxchi/installing-hblc.md b/translations/hu_HU/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/hu_HU/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/haxchi/launching-cfw.md b/translations/hu_HU/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/hu_HU/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/haxchi/nand-backup.md b/translations/hu_HU/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/hu_HU/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/haxchi/sd-preparation.md b/translations/hu_HU/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/hu_HU/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hu_HU/docs/user-guide/haxchi/sidebar.md b/translations/hu_HU/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/hu_HU/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/introduction.md b/translations/hu_HU/docs/user-guide/introduction.md deleted file mode 100644 index 9195fa66861..00000000000 --- a/translations/hu_HU/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hack útmutató ---- -A Nintendo Homebrew segítői és munkatársai által készített útmutató, a gyáritól az Aroma egyedi firmware-ig. - -?> **Discord segítség** Az élő támogatáshoz látogass el a **#wiiu-assistance** csatornára a [Nintendo Homebrew Discord](https://discord.gg/C29hYvh)-on és kérdezz angolul az asszitenciáért. Kérjük olvasd el **#faq-wiiu**-t és a [Gyakran Ismételt Kérdések](faq) oldalt, hogy lásd kérdésed megválaszolásra került-e már. - -> Ha értékeled ezt az útmutatót, elfogadunk [adományokat](donations). - -> A homebrew és egyedi firmware-ek teljes útmutatóját más eszközökhöz megtalálod [hacks.guide](https://hacks.guide) oldalon. - -### Homebrew - -A homebrew alkalmazások olyan egyedi, felhasználó által készített szoftverek, amelyeket a Nintendo nem engedélyezett. Ezek közé tartozhatnak mentésszerkesztő eszközök, játékok, emulátorok és még sok más. - -Egy homebrew futtatható a Wii U-n, amennyiben van módod a fájlok SD-kártyára történő elhelyezésére, és a Wii U-d a régiódnak megfelelő legújabb verzióra van frissítve. - -### Egyedi Firmware - -Az egyéni firmware (gyakran rövidítve "CFW") lehetővé teszi, hogy fejlettebb hackeket használj, amelyeket a userland homebrew nem tud könnyen megtenni. Például a játékmódosítások könnyed telepítését. A CFW bármelyik a legújabb verzión található konzolra beállítható. - -### Homebrew & egyedi firmware felhasználási lehetőségek - -Többek között a következőket teszi lehetővé: - -- "ROM hackek" használata a saját játékaidhoz. -- Mentések mentése, szerkesztése és visszaállítása számos játékhoz. -- Régebbi rendszerek játékainak lejátszása különböző emulátorokkal, a RetroArch vagy más önálló emulátorok használatával. -- Játék régión kívüli játékokkal. -- A Wii U játéklemezeit dumpolhat egy olyan formátumba, amely telepíthető a Wii U belső vagy külső tárolómeghajtójára. - - -### Végcél - -Ennek az útmutatónak az a célja, hogy egy módosítatlan Wii U-t a gyáriról egyéni firmware-re állítson át. - -### Kezdés előtt - -> Az útmutató végrehajtása előtt tisztában kell lenned a Wii U hackelésének kockázataival: **MINDEN** alkalommal, amikor módosítod a rendszeredet, mindig fennáll a veszélye egy **HELYREHOZHATATLANUL** brickeled azt. Ezek ritkák, de még mindig fennáll a lehetőség, ezért győződj meg róla, hogy **MINDEN** utasítást **PONTOSAN** követsz -> -> Ez az útmutató minden régióban minden Wii U konzolon működik a legújabb firmware-rel (5.5.6 az észak-amerikai konzolokon, 5.5.5 az összes többi régióban) vagy annál alacsonyabb verzióval. -> -> A következőkre van szükséged, hogy sikeresen kövesd ezt az útmutatót: -> -> - Egy SD kártya. -> - Egy eszköz, például egy számítógép, amellyel fájlokat az SD-kártyára tudsz helyezni. -> - Egy Wii U internet eléréssel. -> -> Egy 32GB SD kártya elég kell legyen a legtöbb felhasználási célra. Egy Micro SD kártya egy adapteren is megfelelően működik. - -?> **Ha már van korábbi legacy CFW telepítésed**
**CBHC** felhasználók: Menj a[CBHC eltávolítása](../uninstall-cbhc) oldalára a CBHC eltávolításához.
**Haxchi** fehasználók: Távolítsd el a Haxchi appot a Data Management alól a System Settings appban.
**Mocha CFW (Indexiine)** felhasználók: Menj az [Indexiine eltávolítása](../uninstall-indexiine) oldalra az Indexiine eltávolításáért.
**Mocha CFW (Online Exploit)** felhasználók: Nem kell csinálnod semmit, mielőtt követnéd ezt az útmutatót. - -Ha minden a terv szerint halad, nem veszítesz el semmilyen adatot, és a végén minden megmarad, amivel elindultál (a játékok, mentések, NNID stb. megmaradnak). - -Tartsd a készüléked a teljes folyamat alatt bedugva, hogy elkerüld az adatvesztést vagy a váratlan kikapcsolásból eredő károkat. - -Miután követted ezt az útmutatót, a CFW betöltődik és engedélyezve lesz a rendszerindításkor, kivéve, ha úgy döntesz, hogy nem követed az Autobooting Aroma részt. - -Javasoljuk, hogy a teljes útmutatót az elejétől a végéig olvasd el egy vagy több alkalommal, mielőtt ténylegesen végigfuttatnád az útmutatót a rendszereddel. - ---- - -### [Folytatás az Aroma-val](aroma/getting-started) {docsify-ignore} diff --git a/translations/hu_HU/docs/user-guide/mocha/entrypoint-choice.md b/translations/hu_HU/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/hu_HU/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/hu_HU/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/hu_HU/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/hu_HU/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/hu_HU/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/hu_HU/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hu_HU/docs/user-guide/mocha/indexiine/sidebar.md b/translations/hu_HU/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/hu_HU/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/hu_HU/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/hu_HU/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/hu_HU/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/hu_HU/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/hu_HU/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/mocha/sidebar.md b/translations/hu_HU/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/hu_HU/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/tiramisu/autoboot.md b/translations/hu_HU/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/hu_HU/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/hu_HU/docs/user-guide/tiramisu/browser-exploit.md b/translations/hu_HU/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/hu_HU/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/hu_HU/docs/user-guide/tiramisu/finalizing-setup.md b/translations/hu_HU/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/hu_HU/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/hu_HU/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/hu_HU/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/hu_HU/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/hu_HU/docs/user-guide/tiramisu/nand-backup.md b/translations/hu_HU/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/hu_HU/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/hu_HU/docs/user-guide/tiramisu/sd-preparation.md b/translations/hu_HU/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/hu_HU/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/hu_HU/docs/user-guide/tiramisu/sidebar.md b/translations/hu_HU/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/hu_HU/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/hu_HU/docs/user-guide/vwii/browser-exploit.md b/translations/hu_HU/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/hu_HU/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/hu_HU/docs/user-guide/vwii/finalizing-setup.md b/translations/hu_HU/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/hu_HU/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/hu_HU/docs/user-guide/vwii/installing-cioses.md b/translations/hu_HU/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/hu_HU/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/hu_HU/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/hu_HU/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/hu_HU/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/hu_HU/docs/user-guide/vwii/nand-backup.md b/translations/hu_HU/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/hu_HU/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/hu_HU/docs/user-guide/vwii/patching-ios80.md b/translations/hu_HU/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/hu_HU/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/hu_HU/docs/user-guide/vwii/sd-preparation.md b/translations/hu_HU/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/hu_HU/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/hu_HU/docs/user-guide/vwii/sidebar.md b/translations/hu_HU/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c2a7bc22463..00000000000 --- a/translations/hu_HU/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii moddolás** -- [Kezdőlap](../introduction) -- [vWii moddolás](vwii-modding) -- **Linkek** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Fordítás](https://icongr.am/material/translate.svg?color=808080&size=16)Fordítás](https://hacks-guide.crowdin.com/u/projects/10) -- [Támogatás](../donations) -- [Névjegy](../about) diff --git a/translations/hu_HU/docs/user-guide/vwii/vwii-modding.md b/translations/hu_HU/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index ceb40bcaeb3..00000000000 --- a/translations/hu_HU/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# A vWii moddolása{docsify-ignore-all} - -A vWii útmutató beépítésre került a [Wii Hacks Guide](https://wii.hacks.guide/get-started) útmutatóba. Látogasd meg azt a részletes útmutatóért a vWii moddolásához. - -A régi modding útmutató archiválásra került. diff --git a/translations/hu_HU/docs/vwii/vwii-modding.md b/translations/hu_HU/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/hu_HU/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/id_ID/docs/extras/about.md b/translations/id_ID/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/id_ID/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/id_ID/docs/extras/block-updates.md b/translations/id_ID/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/id_ID/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/id_ID/docs/extras/configurable-payload.md b/translations/id_ID/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/id_ID/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/id_ID/docs/extras/donations.md b/translations/id_ID/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/id_ID/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/id_ID/docs/extras/dump-games.md b/translations/id_ID/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/id_ID/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/id_ID/docs/extras/dump-wii-games.md b/translations/id_ID/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/id_ID/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/id_ID/docs/extras/faq.md b/translations/id_ID/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/id_ID/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/id_ID/docs/extras/find-wiiu-ip-address.md b/translations/id_ID/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/id_ID/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/id_ID/docs/extras/unblock-updates.md b/translations/id_ID/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/id_ID/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/id_ID/docs/extras/uninstall-cbhc.md b/translations/id_ID/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/id_ID/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/id_ID/docs/extras/uninstall-indexiine.md b/translations/id_ID/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/id_ID/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/id_ID/docs/extras/uninstall-payloadloader.md b/translations/id_ID/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/id_ID/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/id_ID/docs/privacy/privacy-policy.md b/translations/id_ID/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/id_ID/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/id_ID/docs/sidebar.md b/translations/id_ID/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/id_ID/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/id_ID/docs/troubleshooting/common-issues-fixes.md b/translations/id_ID/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/id_ID/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/id_ID/docs/troubleshooting/fix-errcode-112-1037.md b/translations/id_ID/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/id_ID/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/id_ID/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/id_ID/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/id_ID/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/id_ID/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/id_ID/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/id_ID/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/id_ID/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/id_ID/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/id_ID/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/id_ID/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/id_ID/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/id_ID/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/id_ID/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/cbhc/nand-backup.md b/translations/id_ID/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/id_ID/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/id_ID/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/id_ID/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/id_ID/docs/user-guide/archive/cbhc/sidebar.md b/translations/id_ID/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/id_ID/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/cfw-choice.md b/translations/id_ID/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/id_ID/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/id_ID/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/id_ID/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/id_ID/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/id_ID/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/id_ID/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/id_ID/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/id_ID/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/id_ID/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/id_ID/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/id_ID/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/haxchi/nand-backup.md b/translations/id_ID/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/id_ID/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/id_ID/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/id_ID/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/id_ID/docs/user-guide/archive/haxchi/sidebar.md b/translations/id_ID/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/id_ID/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/id_ID/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/id_ID/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/id_ID/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/id_ID/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/id_ID/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/id_ID/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/id_ID/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/mocha/sidebar.md b/translations/id_ID/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/id_ID/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/sidebar.md b/translations/id_ID/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/id_ID/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/id_ID/docs/user-guide/archive/tiramisu/autoboot.md b/translations/id_ID/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/id_ID/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/id_ID/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/id_ID/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/id_ID/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/id_ID/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/id_ID/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/id_ID/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/id_ID/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/id_ID/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/id_ID/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/id_ID/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/id_ID/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/id_ID/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/id_ID/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/id_ID/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/id_ID/docs/user-guide/archive/tiramisu/sidebar.md b/translations/id_ID/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/id_ID/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/id_ID/docs/user-guide/archive/vwii/browser-exploit.md b/translations/id_ID/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/id_ID/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/id_ID/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/id_ID/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/id_ID/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/id_ID/docs/user-guide/archive/vwii/installing-cioses.md b/translations/id_ID/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/id_ID/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/id_ID/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/id_ID/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/id_ID/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/id_ID/docs/user-guide/archive/vwii/nand-backup.md b/translations/id_ID/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/id_ID/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/id_ID/docs/user-guide/archive/vwii/patching-ios80.md b/translations/id_ID/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/id_ID/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/id_ID/docs/user-guide/archive/vwii/sd-preparation.md b/translations/id_ID/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/id_ID/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/id_ID/docs/user-guide/archive/vwii/sidebar.md b/translations/id_ID/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/id_ID/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/id_ID/docs/user-guide/aroma/autoboot.md b/translations/id_ID/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/id_ID/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/id_ID/docs/user-guide/aroma/browser-exploit.md b/translations/id_ID/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/id_ID/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/id_ID/docs/user-guide/aroma/finalizing-setup.md b/translations/id_ID/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/id_ID/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/id_ID/docs/user-guide/aroma/getting-started.md b/translations/id_ID/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/id_ID/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/id_ID/docs/user-guide/aroma/installing-payloadloader.md b/translations/id_ID/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/id_ID/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/id_ID/docs/user-guide/aroma/nand-backup.md b/translations/id_ID/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/id_ID/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/id_ID/docs/user-guide/aroma/sd-preparation.md b/translations/id_ID/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/id_ID/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/id_ID/docs/user-guide/aroma/sidebar.md b/translations/id_ID/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/id_ID/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/id_ID/docs/user-guide/cbhc/browser-exploit.md b/translations/id_ID/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/id_ID/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/cbhc/ds-vc-choice.md b/translations/id_ID/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/id_ID/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/id_ID/docs/user-guide/cbhc/installing-hblc.md b/translations/id_ID/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/id_ID/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/cbhc/launching-cfw.md b/translations/id_ID/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/id_ID/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/cbhc/nand-backup.md b/translations/id_ID/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/id_ID/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/cbhc/sd-preparation.md b/translations/id_ID/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/id_ID/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/id_ID/docs/user-guide/cbhc/sidebar.md b/translations/id_ID/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/id_ID/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/cfw-choice.md b/translations/id_ID/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/id_ID/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/id_ID/docs/user-guide/haxchi/browser-exploit.md b/translations/id_ID/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/id_ID/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/haxchi/ds-vc-choice.md b/translations/id_ID/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/id_ID/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/id_ID/docs/user-guide/haxchi/installing-hblc.md b/translations/id_ID/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/id_ID/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/haxchi/launching-cfw.md b/translations/id_ID/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/id_ID/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/haxchi/nand-backup.md b/translations/id_ID/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/id_ID/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/haxchi/sd-preparation.md b/translations/id_ID/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/id_ID/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/id_ID/docs/user-guide/haxchi/sidebar.md b/translations/id_ID/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/id_ID/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/introduction.md b/translations/id_ID/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/id_ID/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/id_ID/docs/user-guide/mocha/entrypoint-choice.md b/translations/id_ID/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/id_ID/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/id_ID/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/id_ID/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/id_ID/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/id_ID/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/id_ID/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/id_ID/docs/user-guide/mocha/indexiine/sidebar.md b/translations/id_ID/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/id_ID/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/id_ID/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/id_ID/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/id_ID/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/id_ID/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/id_ID/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/mocha/sidebar.md b/translations/id_ID/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/id_ID/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/tiramisu/autoboot.md b/translations/id_ID/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/id_ID/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/id_ID/docs/user-guide/tiramisu/browser-exploit.md b/translations/id_ID/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/id_ID/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/id_ID/docs/user-guide/tiramisu/finalizing-setup.md b/translations/id_ID/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/id_ID/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/id_ID/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/id_ID/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/id_ID/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/id_ID/docs/user-guide/tiramisu/nand-backup.md b/translations/id_ID/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/id_ID/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/id_ID/docs/user-guide/tiramisu/sd-preparation.md b/translations/id_ID/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/id_ID/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/id_ID/docs/user-guide/tiramisu/sidebar.md b/translations/id_ID/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/id_ID/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/id_ID/docs/user-guide/vwii/browser-exploit.md b/translations/id_ID/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/id_ID/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/id_ID/docs/user-guide/vwii/finalizing-setup.md b/translations/id_ID/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/id_ID/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/id_ID/docs/user-guide/vwii/installing-cioses.md b/translations/id_ID/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/id_ID/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/id_ID/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/id_ID/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/id_ID/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/id_ID/docs/user-guide/vwii/nand-backup.md b/translations/id_ID/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/id_ID/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/id_ID/docs/user-guide/vwii/patching-ios80.md b/translations/id_ID/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/id_ID/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/id_ID/docs/user-guide/vwii/sd-preparation.md b/translations/id_ID/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/id_ID/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/id_ID/docs/user-guide/vwii/sidebar.md b/translations/id_ID/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/id_ID/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/id_ID/docs/user-guide/vwii/vwii-modding.md b/translations/id_ID/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/id_ID/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/id_ID/docs/vwii/vwii-modding.md b/translations/id_ID/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/id_ID/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/it_IT/docs/extras/about.md b/translations/it_IT/docs/extras/about.md deleted file mode 100644 index 74a2c43272c..00000000000 --- a/translations/it_IT/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# Informazioni sulla guida ---- -Questa guida è stata scritta da membri dello staff del [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Crediti** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, e redcubie.** -> -> Grazie a [tutte le altre persone](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) che hanno contribuito alla guida su GitHub. - -?> [Puoi trovare questa guida su GitHub](https://github.com/hacks-guide/Guide-WiiU), è concessa in licenza sotto la [Licenza ISC](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Crediti agli sviluppatori / creatori degli strumenti** -> -> - **GaryOderNichts** e **Maschell** per l'[AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** per il [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), la versione fixata dell'[Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), e [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** e **FIX94** per il d2x cIOS Installer. -> -> - **koolkdev** e **FIX94** per [disc2app](https://github.com/koolkdev/disc2app). -> -> - Il **team Docsify** per [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** per [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** per il [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), il [Plugin FTPiiU](https://github.com/wiiu-env/ftpiiu_plugin/), il [Plugin SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/), il [Plugin Screenshot](https://github.com/wiiu-env/ScreenshotWUPS/), l'[Aroma Downloader](https://aroma.foryour.cafe), e Tiramisu/Aroma. -> -> - **FIX94** e **smealum** per [Haxchi e CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** per l'[Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), l'[Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher) e [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** e **dimok789** per l'[Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** e il **4TU Team** per [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** per [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** e **orboditilt** per [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** e **FIX94** per Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** per [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Team Loadiine GX2**, **Yardape** e **brienj** per [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** per [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** e **Maschell** per la [payload Wii U NAND Dumper ](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** per [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** per il [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** per il [modulo Sigpatches](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/it_IT/docs/extras/block-updates.md b/translations/it_IT/docs/extras/block-updates.md deleted file mode 100644 index 53b7c8eb663..00000000000 --- a/translations/it_IT/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Bloccare gli aggiornamenti ---- -Tutti gli exploit Wii U conosciuti possono venir bloccati da un aggiornamento, a differenza, per esempio, dell'exploit RCM di Nintendo Switch. Anche se il Wii U non è più ufficialmente supportato, Nintendo potrebbe ancora rilasciare aggiornamenti per la console. Ad esempio, gli aggiornamenti da 5.5.3 a 5.5.6 sono stati rilasciato quando il Wii U venne discontinuato, quindi è raccomandato bloccare gli aggiornamenti. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Istruzioni {docsify-ignore} - -Attualmente, esiste un solo modo per bloccare effettivamente gli aggiornamenti di sistema Wii U: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/it_IT/docs/extras/configurable-payload.md b/translations/it_IT/docs/extras/configurable-payload.md deleted file mode 100644 index 3ad9b60e985..00000000000 --- a/translations/it_IT/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Payload configurabile ---- -Questa payload è configurabile, similmente alla configurazione di Haxchi. Questo potrebbe essere molto utile per gli utenti di Mocha, in quanto risparmia un po' del tempo che si utilizzerebbe per avviare Mocha tramite Homebrew Launcher. - -### Cosa ti servirà {docsify-ignore} - -- Il configurable payload. -- L'ultima versione di [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Istruzioni {docsify-ignore} - -1. Estrai il file `homebrew_launcher_channel.v2.1_fix.zip` nella cartella `install` che si trova nella root della tua scheda SD. -1. Metti la scheda SD nel tuo Wii U e avvia l' [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Naviga nell'Homebrew Launcher e avvia l'applicazione WUP Installer GX2. -1. Seleziona `Homebrew Launcher Channel`. Premi `install` e installa sulla NAND come destinazione. Questo installerà l'Homebrew Launcher nel menu Wii U. -1. Una volta terminato il processo, premi il pulsante HOME fino a quando non sarai nuovamente nel menu Wii U. -1. A questo punto il canale non si avvierà, poiché andrà in conflitto con la versione in esecuzione sulla scheda SD che stavi utilizzando. Riavvia il Wii U. -1. Espelli la scheda SD dal tuo Wii U e inseriscila nel tuo computer. -1. Estrai il file `Configurable_Payload.zip` nella root della tua scheda SD. Se ti chiede di sovrascrivere alcuni file sulla tua SD, fallo. -1. Rimetti la scheda SD nel tuo Wii U, avvia il Browser Internet e recati sul sito `wiiuexploit.xyz`. -1. Clicca su `Run Homebrew Launcher`. Se tutto è stato fatto correttamente, dovresti essere riportato indietro nel menu Wii U. Mocha è ora stato abilitato e puoi utilizzare il Canale Homebrew Launcher che hai installato precedentemente. - - Se il tuo Wii U si blocca su una schermata bianca o su una qualsiasi altra schermata, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. diff --git a/translations/it_IT/docs/extras/donations.md b/translations/it_IT/docs/extras/donations.md deleted file mode 100644 index fb3a3e1f114..00000000000 --- a/translations/it_IT/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donazioni {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/it_IT/docs/extras/dump-games.md b/translations/it_IT/docs/extras/dump-games.md deleted file mode 100644 index 2dabc6580d6..00000000000 --- a/translations/it_IT/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumpare dischi del Wii U ---- -Dumpare i tuoi dischi ti permette di installare una copia del tuo gioco sulla NAND/dispositivo USB così da poterci giocare senza disco. - -?> Dumpare e installare giochi richiede una console modificata, quindi assicurati di aver seguito la guida principale sull'installazione di CFW prima di seguire questa guida. - -!> E' **ILLEGALE** condividere i file dumpati con questa guida. -Se hai intenti di utilizzare questa guida per condividere i tuoi giochi dumpati, non farlo. - -### Dumpare e installare dischi Wii U {docsify-ignore} - -?> Installare un gioco sulla memoria di sistema (NAND) non è consigliato poiché è limitata a soli 8GB o 32GB a dipendenza del tuo modello, facendoti finire lo spazio in fretta se vuoi installare più giochi. - -?> Quando si installa un gioco su un dispositivo USB, consigliamo di usare un HDD e non una chiave USB, poiché queste ultime non sono ottimizzate per una costante lettura e scrittura, e portano quindi a errori frequenti. Se il tuo HDD non è alimentato esternamente, ti servirà un cavo a Y per collegarlo alle due porte USB del Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Conferma con Sì. - -#### Cosa ti servirà {docsify-ignore} - -- La tua scheda SD ha bisogno di spazio sufficiente da contenere il gioco che vuoi dumpare. -- Se si vuole installare su un USB, un HDD USB (+ un cavo Y se necessario). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Istruzioni {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copia nella root della tua scheda SD i contenuti del file wudd `.zip` appena scaricato. -1. Togli la scheda SD dal tuo PC e inseriscila nel tuo Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Seleziona `Dump partition as .app` -1. Seleziona la partizione `Game` per cominciare il dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Inserisci la scheda SD nel tuo computer. -1. Copia la cartella `GMXXXXXXXXXXXXXXXX` da `sd:/wudump/WUP-X-XXXX` alla cartella `install` della tua scheda SD. - - Se la cartella `install` non esiste, creala. -1. Espelli e inserisci la scheda SD nel tuo Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Seleziona il tuo gioco (`GMXXXXXXXXXXXXXXXX`), premi `Install` e conferma con `Yes`. -1. Seleziona 'USB' per installare su USB e 'NAND' per installare su NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. Dovresti vedere il tuo gioco installato, pronto per essere giocato. -1. Togli la scheda SD dal tuo Wii U e inseriscila nel tuo PC. -1. Elimina la cartella `GMXXXXXXXXXXXXXXXX` dalla cartella `install` nella tua scheda SD per liberare spazio. - -### Spostare i giochi su USB - -?> Se non vuoi tenere i giochi installati sulla NAND, puoi utilizzare la Gestione dati del Wii U per spostare il gioco su un dispositivo USB. - -!> Per spostare il tuo gioco su un dispositivo USB, dev'essere formattato dal Wii U. Facendo ciò, i contenuti del dispositivo verranno eliminati e non sarà possibile utilizzarlo su altri sistemi, a meno che non lo riformatti. - -1. Collega il tuo dispositivo USB al Wii U. -1. Accendi il tuo Wii U. -1. Il tuo Wii U ti chiederà di formattare il tuo dispositivo USB. Conferma con Sì. -1. Apri le Impostazioni della console del Wii U. -1. Vai su `Gestione dati > Copia, sposta o elimina dati > Memoria della console > Seleziona per copiare/spostare (X)` -1. Seleziona il gioco e sposta tutti i dati (compreso aggiornamenti e DLC se installati) sul tuo dispositivo USB. - -### Spostare aggiornamenti su USB - -?> Se il tuo gioco su disco aveva DLC o aggiornamenti installati, devi trasferire i dati sul tuo dispositivo USB. Puoi farlo utilizzando la Gestione dati del Wii U. - -1. Accendi il tuo Wii U -1. Apri le Impostazioni della console del Wii U. -1. Vai su `Gestione dati > Copia, sposta o elimina dati > Memoria della console > Seleziona per copiare/spostare (X)`. -1. Seleziona il tuo gioco e sposta i dati di aggiornamento e i DLC sul dispositivo USB. diff --git a/translations/it_IT/docs/extras/dump-wii-games.md b/translations/it_IT/docs/extras/dump-wii-games.md deleted file mode 100644 index 681ef820c1b..00000000000 --- a/translations/it_IT/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -Dumpare dischi del Wii ---- -Dumpare i tuoi dischi ti permette di: giocarli su un emulatore Wii (come Dolphin), giocarli utilizzando un USB/SD Card loader come WiiFlow, creare un inject in Virtual Console che può essere installato su un dispositivo USB formattato in Wii U o nella NAND e avviato dal menu Wii U. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> E' **ILLEGALE** condividere i file dumpati con questa guida. -Se hai intenti di utilizzare questa guida per condividere i tuoi giochi dumpati, non farlo. - -### Cosa ti servirà {docsify-ignore} - -1. L'ultima versione di [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. Il file [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat). - -### Istruzioni {docsify-ignore} - -1. Inserisci la scheda SD del tuo Wii U nel tuo computer. -1. Copia la cartella `apps` dal file `CleanRip-v2.1.1.zip` nella root della scheda SD. -1. Copia il file `wii.dat` nella root della scheda SD. -1. Togli la scheda SD dal computer e inseriscila nella console Wii U. - -### Dumping del disco - -1. Accendi il tuo Wii U e scegli l'icona del Menu Wii per entrare nel vWii. -1. Avvia l'Homebrew Channel. -1. Avvia CleanRip. -1. Leggi le avvertenze e premi A. -1. Seleziona Yes per abilitare Checksum Calculations. -1. Seleziona lo USB o la SD a dipendenza del dispositivo che vuoi utilizzare per il processo di dumping. - - Si prega di notare che il dispositivo che scegli deve essere formattato come FAT32 o NTFS. -1. Premi A per continuare. -1. Seleziona No nella schermata che chiede di scaricare i file DAT di redump.org. -1. Inserisci il tuo disco e premi A. -1. Vai [su questa pagina](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) per vedere se il tuo disco è a doppio strato. -1. Imposta tutto in modo da corrispondere a quanto segue: - - Dual Layer: `Yes/No` (Seleziona `Yes` se il tuo disco è a doppio strato) - - Chunk Size: `Max` - - New device per chunk: `No` -1. Se vuoi dumpare più dischi, seleziona Yes per memorizzare le impostazioni. In caso contrario, seleziona No. - -?> Preparati ad aspettare un po'. Il processo di dumping può richiedere dai 30 minuti a 1 ora a dipendenza della velocità della tua scheda SD. - -### Unire i file divisi - ->> Se hai dumpato il disco su un dispositivo formattato come FAT32, dovresti avere almeno due file che terminano con `.partX.iso`. Hanno bisogno di essere uniti. - -#### Windows {docsify-ignore} - -1. Copia tutti i file che condividono lo stesso nome e che terminano con `.partX.iso` in una cartella sul tuo computer. -1. Fai click destro sulla cartella mentre tieni Shift e seleziona `Apri finestra PowerShell qui`. -1. Nella finestra di PowerShell, esegui questo comando come segue: `cmd.exe /c "copy b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copia tutti i file che condividono lo stesso nome e che terminano con `.partX.iso` in una cartella sul tuo computer. -1. Apri un terminale. -1. Usa il comando `cd ` e sostituisci `` con il percorso dei tuoi file `.partX.iso`. -1. Usare il seguente comando: `cat *.part?.iso > game.iso`. diff --git a/translations/it_IT/docs/extras/faq.md b/translations/it_IT/docs/extras/faq.md deleted file mode 100644 index c71d9f24f66..00000000000 --- a/translations/it_IT/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Domande frequenti {docsify-ignore-all} ---- - -### La modifica ha dei rischi? - -Attualmente, modificare il Wii U non ti espone al rischio di venire bannato da Nintendo a meno che non usi trucchi su giochi online, o se commetti frode sull'eShop. Dovresti, tuttavia, fare sempre attenzione quando avvii homebrew scaricati, specialmente se non ti fidi della fonte, dato che potenzialmente gli homebrew possono danneggiare il tuo sistema! - -### Cos'è un exploit? - -Un exploit è un punto d'entrata che permette di eseguire ulteriore homebrew. Nella guida principale userai exploit come l'exploit browser (http://wiiuexploit.xyz) e PayloadLoader (exploit & Informazioni per la salute e sicurezza). Tutti gli exploit attuali caricano `SD:/wiiu/payload.elf`, che controlla il caricamento di ulteriori homebrew. - -### Cos'è un payload? - -Un payload, il cui file è solitamente chiamato `payload.elf`, esiste per portare exploit diversi a caricare lo stesso passo successivo, permettendo un aggiornamento più facile. Non importa quale exploit carica il payload, il risultato è sempre lo stesso. È possibile cambiare tra diversi exploit utilizzando PayloadLoaderPayload. Il payload utilizzato nella guida principale è CustomRPXLoader, che carica `SD:/wiiu/payload.rpx`, e il `payload.rpx` utilizzato nella guida è EnvironmentLoader, che consente di caricare diversi ambienti. - -### Cos'è un ambiente? - -Un ambiente è una raccolta di "moduli di configurazione", che saranno eseguiti in un certo ordine quando si avvia l'ambiente. Such environments are Aroma and Tiramisu. I moduli di configurazione sono piccoli pezzi di homebrew/codice che vengono eseguiti una volta per configurare un ambiente. - -### Come eliminare la cartella Update per bloccare gli aggiornamenti su Wii U - -Se vuoi eliminare la cartella Update per bloccare gli aggiornamenti, segui la scheda relativa nella [guida sul blocco degli aggiornamenti](block-updates). - -### Quale dimensione di scheda SD è consigliata? - - - **Installare backup di giochi:** 32GB (si potrebbe usare una dimensione inferiore, ma certi titoli sono di 20GB) - - **Eseguire mod di giochi:** 8GB (USB FAT32 potrebbero anche essere utilizzate per le mod) - - **Solo eseguire app homebrew:** Qualsiasi dimensione. - -**Marche consigliate:** SanDisk, Samsung o PNY - -?> Nota: Evita le schede SD di classe 4 ed evita eBay! - -### Posso installare homebrew su Wii U con una USB invece di una scheda SD? - -No, devi avere una scheda SD per la prima configuazione. Una USB può successivamente essere usata per installare backup di giochi, inject per Virtual Console, ecc., ma non per memorizzare applicazioni homebrew che sono necessarie per configurare tutto. - -### Quando si estraggono alcuni file ci sono determinati duplicati chiamati "info.json" & "manifest.install", cosa devo fare con questi? - -Niente di speciale, puoi lasciarli lì, eliminarli o sostituirli con dei nuovi. Questi file non vengono utilizzati nel processo, quindi non cambierà nulla se sono presenti o meno. - -### Cos'è un dispositivo USB formattato per Wii U? - -È un dispositivo USB che è stato formattato da una console Wii U nel suo formato proprietario. -Un dispositivo formattato per Wii U ***non può essere letto da nessun altro dispositivo oltre al Wii U che lo ha formattato originariamente.*** -Qualora volessi usarlo con un'altra console Wii U o con altri dispositivi, dovrai formattarlo nuovamente. diff --git a/translations/it_IT/docs/extras/find-wiiu-ip-address.md b/translations/it_IT/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 37b233d9f2b..00000000000 --- a/translations/it_IT/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# Come trovare l'indirizzo IP del tuo Wii U ---- -Guida veloce su come trovare l'indirizzo IP della tua console Wii U. - -### Cosa ti servirà - -1. L'ultima versione di [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Estrai il file `ftpiiu.zip` nella root della tua scheda SD. - -### Istruzioni - -1. Avvia l'Homebrew Launcher. -1. Avvia FTPiiU. -1. L'indirizzo IP del tuo Wii U verrà visualizzato nella parte inferiore dello schermo. -1. Per uscire da FTPiiU, premi il pulsante HOME. \ No newline at end of file diff --git a/translations/it_IT/docs/extras/unblock-updates.md b/translations/it_IT/docs/extras/unblock-updates.md deleted file mode 100644 index 56ebd387792..00000000000 --- a/translations/it_IT/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Sbloccare gli aggiornamenti ---- -Questo è necessario se avrai mai bisogno di eseguire un Aggiornamento della Console. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Istruzioni {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> Quando si effettua l'autoboot su PayloadLoader, gli aggiornamenti vengono bloccati automaticamente. Segui la guida in basso per disattivarlo. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Premi A per selezionare `Check`. -1. Seleziona `Boot options`. -1. Ti verrà chiesto se vuoi cambiare il titolo di avvio. Premi A per selezionare `Switch back to Wii U Menu`. -1. Al termine del processo, premi A per spegnere la console. -1. Esegui l'Aggiornamento della console. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Ricreare la cartella Update** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Rimuovere i blocchi DNS** - -### Rimuovere i blocchi DNS - -1. Entra nelle Impostazione della console Wii U e vai su `Internet > Collegati a Internet > Lista delle connessioni >` ` La tua connessione Wi-Fi > Modifica le impostazioni > DNS` e imposta l'opzione `Ottenimento automatico`. -1. Non stai più bloccando gli aggiornamenti di sistema. - - diff --git a/translations/it_IT/docs/extras/uninstall-cbhc.md b/translations/it_IT/docs/extras/uninstall-cbhc.md deleted file mode 100644 index fd8a72161ba..00000000000 --- a/translations/it_IT/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Disinstallare CBHC ---- -Questa pagina ti guiderà attraverso il processo di disinstallazione di CBHC dal tuo Wii U. - -### Istruzioni {docsify-ignore} - -1. Avvia l'Homebrew Launcher. -1. Avvia CBHC Installer. -1. Seleziona il gioco Virtual Console DS da cui vuoi disinstallare CBHC e poi premi il pulsante `A`. -1. Leggi gli avvertimenti e poi premi il pulsante `B`. -1. Controlla che il tuo Wii U non avvii più automaticamente CBHC riavviando la console. -1. Se all'accensione della console non avviene l'avvio automatico o compare la schermata del menù, puoi aprire le Impostazioni della console, poi andare su Gestione dati e disinstallare in sicurezza l'applicazione chiamata `DON'T TOUCH ME`. - -?> Se ricevi un messaggio pop-up che indica "Si è verificato un errore. Spegni la console e riprova." mentre stai disinstallando l'applicazione `DON'T TOUCH ME`, riavvia la console e prova a disinstallare l'applicazione di nuovo. **Per favore** assicurati di aver seguito tutti i passaggi precedenti prima di eliminare l'applicazione. \ No newline at end of file diff --git a/translations/it_IT/docs/extras/uninstall-indexiine.md b/translations/it_IT/docs/extras/uninstall-indexiine.md deleted file mode 100644 index b568b196fe6..00000000000 --- a/translations/it_IT/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Disinstallare Indexiine ---- -Questa pagina ti guiderà attraverso il processo di disinstallazione di Indexiine dal tuo Wii U. - -### Istruzioni {docsify-ignore} - -1. Avvia l'Homebrew Launcher. -1. Avvia Indexiine-Installer. -1. Premi il pulsante B per disinstallare Indexiine. -1. Controlla che il tuo Wii U non avvii più automaticamente l'Homebrew Launcher quando il Browser Internet viene aperto. diff --git a/translations/it_IT/docs/extras/uninstall-payloadloader.md b/translations/it_IT/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index b92ed84a7ab..00000000000 --- a/translations/it_IT/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Disinstallare PayloadLoader ---- -Questa pagina ti guiderà attraverso il processo di disinstallazione di PayloadLoader dalla tua Wii U. - -!> Un reset di fabbrica **non** disinstallerà il PayloadLoader iniettato. Per disinstallarlo completamente, segui questa guida. - -### Cosa ti servirà {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Annullare l'auto-avvio in PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Premi A per selezionare `Check`. -1. Seleziona `Boot options`. -1. Ti verrà chiesto se vuoi cambiare il titolo di avvio. Premi A per selezionare `Switch back to Wii U Menu`. -1. Al termine del processo, premi A per spegnere la console. -1. La console si riavvierà nuovamente nel menu Wii U. Il PayloadLoader può ancora essere lanciato lanciando l'applicazione Informazioni per la salute e la sicurezza. - -### Disinstallare PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Premi A per selezionare `Check`. -1. Seleziona `Remove`. -1. Ti verrà chiesto se vuoi davvero rimuovere il PayLoadLoader. Seleziona `Remove` di nuovo. -1. Al termine del processo, premi A per spegnere la console. diff --git a/translations/it_IT/docs/privacy/privacy-policy.md b/translations/it_IT/docs/privacy/privacy-policy.md deleted file mode 100644 index 23bb1bf62dd..00000000000 --- a/translations/it_IT/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# AVVISO RIGUARDANTE LA PRIVACY {docsify-ignore-all} - -**Ultimo aggiornamento 18 gennaio 2020** - - -Grazie per aver scelto di essere parte della nostra comunità su Wii U Hacks Guide ("compagnia", "noi", o "nostra"). Ci impegniamo a proteggere le tue informazioni personali e il tuo diritto alla privacy. Se hai domande o dubbi sulla nostra informativa, o sulle nostre pratiche riguardanti le tue informazioni personali, ti preghiamo di contattarci a nh.wiiuguide@gmail.com. - -Quando visiti il nostro sito https://wiiu.hacks.guide, e utilizzi i nostri servizi, tu ti fidi di noi sulle tue informazioni personali. Prendiamo molto seriamente la tua privacy. In questa informativa sulla privacy, descriviamo la nostra politica sulla privacy. Cerchiamo di spiegarti nel modo più chiaro possibile quali informazioni raccogliamo, come le utilizziamo e quali diritti hai in relazione a esse. Speriamo ti prenda un po' di tempo per leggerla bene, perché è importante. Se in questa informativa sulla privacy sono presenti termini con cui non sei d'accordo, ti preghiamo di non utilizzare più i nostri siti e i nostri servizi. - -Questa informativa sulla privacy si applica a tutte le informazioni raccolte tramite il nostro sito (come https://wiiu.hacks.guide) e/od ogni relativo servizio, sconto, vendita o evento (ci riferiamo collettivamente a essi in questa informativa sulla privacy come i "**Siti**"). - -**Per favore, leggi questa informativa sulla privacy attentamente.** - - -## TABELLA DEI CONTENUTI - -[1. QUALI INFORMAZIONI RACCOGLIAMO?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. UTILIZZIAMO COOKIE E ALTRE TECNOLOGIE DI TRACCIAMENTO?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. QUALI SONO I TUOI DIRITTI ALLA PRIVACY?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. I RESIDENTI IN CALIFORNIA HANNO DIRITTI ALLA PRIVACY SPECIFICI?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. FACCIAMO AGGIORNAMENTI A QUESTA INFORMATIVA?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. COME PUOI CONTATTARCI PER QUESTA INFORMATIVA?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. QUALI INFORMAZIONI RACCOGLIAMO? :id=_1-what-information-do-we-collect - -***In breve:*** *Non raccogliamo nessun tipo di informazione personale.* - -Non raccogliamo informazioni personali in nessuna forma. Tuttavia, il nostro hoster, [GitHub Pages](https://pages.github.com/) potrebbe raccogliere informazioni personali. Per ulteriori informazioni, visita [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. UTILIZZIAMO COOKIE E ALTRE TECNOLOGIE DI TRACCIAMENTO? :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In breve:*** *Non utilizziamo cookie e altre tecnologie di tracciamento per raccogliere e memorizzare le tue informazioni.* - -Non utilizziamo cookie e altre tecnologie simili (come web beacons e pixels) per accedere e memorizzare informazioni. - - -### 3. QUALI SONO I TUOI DIRITTI ALLA PRIVACY? :id=_3-what-are-your-privacy-rights - -***In breve*** *In alcune regioni, come l'Area Economica Europea, hai diritti che ti consentono di avere più accesso e controllo sulle tue informazioni personali. Puoi rivedere, modificare o chiudere il tuo account in qualsiasi momento.* - -In alcune regioni (come l'Area Economica Europea), hai certi diritti sotto leggi applicabili sulla protezione dei dati. Questi potrebbero includere il diritto (I) di richiedere accesso e ottenere una copia delle tue informazioni personali, (II) per richiedere la rettifica o cancellazione; (III) per restringere il trattamento dei tuoi dati personali; e (IV), se applicabile, la portabilità dei dati. In alcune circostanze, potresti anche avere il diritto di obiettare il trattamento delle tue informazioni personali. Per fare questa richiesta, utilizza i [dettagli per il contatto](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) forniti qui sotto. Considereremo e agiremo basandoci su qualunque richiesta in accordo con le leggi applicabili sulla protezione dei dati. - -Se ci affidiamo al tuo consenso per trattare le tue informazioni personali, hai il diritto revocare il consenso in qualsiasi momento. Ti preghiamo, tuttavia, di notare che questo non influenzerà la legalità del trattamento prima del suo ritiro. - -Se sei residente nell'Area Economica Europea e credi che stiamo trattando illegalmente i tuoi dati personali, hai anche il diritto di presentare reclamo alle autorità locali di controllo della protezione dei dati. Puoi trovare le loro informazioni di contatto qui: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. I RESIDENTI IN CALIFORNIA HANNO DIRITTI ALLA PRIVACY SPECIFICI? :id=_4-do-california-residents-have-specific-privacy-rights - -***In breve*** *Sì, se sei residente in California, ti sono concessi diritti specifici riguardanti l'accesso alle tue informazioni personali.* - -California Codice Civile Sezione 1798. 3, noto anche come la legge “Shine The Light”, permette ai nostri utenti che sono residenti in California di richiedere e ottenere da noi, una volta all'anno e gratuitamente, informazioni sulle categorie di informazioni personali (se del caso) che abbiamo comunicato a terzi per finalità di marketing diretto e i nomi e gli indirizzi di tutte le terze parti con cui abbiamo condiviso le informazioni personali nell'anno immediatamente precedente. Se sei residente in California e vorresti fare questa richiesta, perfavore invia la richiesta scrivendo a noi alle informazioni di contatto fornite qui sotto. - -Se hai meno di 18 anni, risiedi in California, e hai registrato un account con i Siti, hai il diritto di richiedere la rimozione di dati indesiderati che tu metti pubblicamente sui siti. Per richiedere la rimozione di questi dati, contattaci usando le informazioni di contatto fornite qui sotto, e includi l'indirizzo email associato con l'account e una dichiarazione che conferma che sei residente in California. Ci assicureremo che i dati non saranno visibili pubblicamente sui Siti, però sii al corrente che i dati potrebbero non venir rimossi totalmente dai nostri sistemi. - - -### 5. FACCIAMO AGGIORNAMENTI A QUESTA INFORMATIVA? :id=_5-do-we-make-updates-to-this-policy - -***In breve:*** *Sì, aggiorneremo questa informativa in base alla necessità di rimanere conformi alle relative leggi.* - -Potremmo aggiornare questa informativa di tanto in tanto. La versione aggiornata verrà indicata da una data "Revisionata" aggiornata e la versione aggiornata entrerà in vigore non appena sarà accessibile. Se apportiamo modifiche sostanziali all'informativa, potremmo informarti pubblicando in modo visibile un annuncio dei cambiamenti o direttamente inviandoti una notifica. Ti invitiamo a rivedere questa informativa sulla privacy frequentemente così da tenerti informato su come proteggiamo le tue informazioni. - - -### 6. COME PUOI CONTATTARCI PER QUESTA INFORMATIVA? :id=_6-how-can-you-contact-us-about-this-policy - -Se hai domande o commenti su questa informativa, potresti inviarci un email a nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/it_IT/docs/sidebar.md b/translations/it_IT/docs/sidebar.md deleted file mode 100644 index 28464a482b3..00000000000 --- a/translations/it_IT/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **Guida per l'utente** -- [Introduzione](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Risoluzione Dei Problemi** -- [Problemi comuni & Soluzioni](common-issues-fixes) -- [Recupera un Canale/IOS vWii](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archivio** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](donations) -- [Informazioni](about) -- **Privacy** -- [Informativa sulla Privacy](privacy-policy) diff --git a/translations/it_IT/docs/troubleshooting/common-issues-fixes.md b/translations/it_IT/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index 8bb8b15b4fa..00000000000 --- a/translations/it_IT/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Problemi comuni & Soluzioni {docsify-ignore-all} ---- -### Errori comuni di Haxchi - - - **-3:** "No SD Card detected.". Re-inserisci la scheda SD e riprova. Controlla che la SD sia formattata in FAT32. Se l'errore persiste, prova a soffiare dentro lo slot della SD, visto che potrebbe trovarsi eventuale polvere al suo interno. - - - **-4:** "SD detected but could not mount.". Controlla se la SD abbia lo schema di partizione in formato MBR e non GPT. Controlla anche se ci sono altre partizioni nella SD e uniscile con la partizione principale. - - - **-5:** "Missing files on the SD.". Controlla se nella tua SD l'Homebrew Launcher è situato in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Errori del browser - - - **FSGetMountSource failed:**è uguale a -3, indica che la SD non viene rilevata. Re-inserisci la SD e riprova. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** il payload non è stato trovato nella SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** l'`homebrew_launcher` non è presente all'interno della SD. Controlla di avere `homebrew_launcher.elf` nella cartella /wiiu/apps/homebrew_launcher. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Gestione Dati chiede di cancellare dati non necessari, che significa? - -Questo si riferisce a file rimasti da installazioni incomplete. Seleziona sempre "Si" per cancellare questi dati, visto che occupano spazio per nessun motivo. Se si blocca durante l'eliminazione dei file, puoi cancellarli manualmente. -Usa FTPiiU Everywhere, naviga all'interno della cartella `/storage_mlc/usr/import` e cancella tutti i file in quella cartella, se presenti. Questo è dove le installazioni parziali sono situate dopo installazioni incomplete. Sarà `/storage_usb/usr/import` se è installato su una USB. -La cartella `import` deve essere sempre vuota. - -### Il mio HDD non funziona o fa un suono strano di un click, cosa dovrei fare? - -Il motivo è perchè il Wii U non da abbastanza corrente dalla porta USB usando l'HDD. - -Puoi risolvere questo usando un HDD alimentato o un cavo-Y per connettere l'HDD con due porte USB. - -Se l'HDD ha smesso di funzionare per alcuni/tutti i giochi, è lo stesso problema e può essere risolto con gli stessi metodi. - -### Quando si estraggono alcuni file ci sono determinati duplicati chiamati "info.json" & "manifest.install", cosa devo fare con questi? - -Niente di speciale, puoi lasciarli lì, eliminarli o sostituirli con dei nuovi. Questi file non vengono utilizzati nel processo, quindi cancellandoli o togliendoli dalla directory non cambierà nulla. - -### La mia console all'improvviso ha perso la connettività online e ho un HDD sulla parte superiore della console, che faccio? - -L'antenna interna potrebbe subire interferenze dal magnete del disco rigido. -È possibile spostare l'HDD in una posizione diversa sulla Wii U o spostarlo completamente fuori dalla Wii U. diff --git a/translations/it_IT/docs/troubleshooting/fix-errcode-112-1037.md b/translations/it_IT/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index 53e6b33019a..00000000000 --- a/translations/it_IT/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -Come risolvere il codice errore 112-1037 ---- -Questa pagina ti guiderà nel processo di risolvimento del codice errore 112-1037. - -### Cosa ti servirà {docsify-ignore} - -- Un'installazione funzionante di [homebrew](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(tasto destro -> Salva il link come... -> Clicca salva).** -- L'ultima versione di [Python](https://www.python.org/downloads/). - -### Istruzioni {docsify-ignore} - -1. Installa Python sul computer. - -### Risolvere l'errore - - - -#### **Windows** - -### Windows - -1. Accendi il tuo Wii U. -1. Avvia l'Homebrew Launcher e avvia Mocha. -1. Torna al menu Wii U. -1. Apri una del finestra del Prompt dei Comandi sul PC. -1. Utilizzare il seguente comando: `cd `. - - Esempio: cd C:\Users\username\Downloads. -1. Usa il seguente comando: `py -3 -i wupclient.py`. -1. Inserisci l'indirizzo IP del tuo Wii U. - - Non sai come trovarlo? Leggi [qui](find-wiiu-ip-address). -1. Usa il comando appropriato a seconda della regione della tua console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. Se tutto è andato bene, otterrai la seguente risposta: `chmod returned 0x0`. -1. Il codice errore dovrebbe essere sparito. - -#### **macOS & Linux** - -### macOS & Linux - -1. Accendi il tuo Wii U. -1. Avvia l'Homebrew Launcher e avvia Mocha. -1. Torna al menu Wii U. -1. Apri una finestra del Terminale. -1. Utilizzare il seguente comando: `cd `. - - Su macOS, il luogo più comune per trovare i file scaricati è /Users/username/Downloads. - - Su Linux, il luogo più comune per trovare i file scaricati è /home/username/Downloads. -1. Usa il seguente comando: `python3 -i wupclient.py`. -1. Inserisci l'indirizzo IP del tuo Wii U. - - Non sai come trovarlo? Leggi [qui](find-wiiu-ip-address). -1. Usa il comando appropriato a seconda della regione della tua console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. Se tutto è andato bene, otterrai la seguente risposta: `chmod returned 0x0`. -1. Il codice errore dovrebbe essere sparito. - - \ No newline at end of file diff --git a/translations/it_IT/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/it_IT/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index 9a53a52dce4..00000000000 --- a/translations/it_IT/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recuperare un IOS/Canale vWii ---- -Questa pagina ti guiderà attraverso il processo di recupero di un IOS o di un canale sulla tua vWii, se per qualche motivo è stato corrotto o eliminato. - -!> Potresti distruggere la NAND del tuo vWii se non segui i passaggi con attenzione! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> Se stai utilizzando un metodo per bloccare gli aggiornamenti, [rimuovilo](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### Cosa ti servirà {docsify-ignore} - -- Un'installazione [homebrew](introduction) nella parte Wii U della console. -- L'ultima versione di [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Istruzioni {docsify-ignore} - -1. Copia i contenuti di `decaffeinator.zip` nella root della tua SD. -1. Togli la scheda SD dal computer e inseriscila nella console Wii U. -1. Accendi il Wii U e avvia il CFW che preferisci (Mocha, Haxchi o CBHC). -1. Avvia l'Homebrew Launcher. -1. Avvia vWii Decaffeinator. - -### Processo di recupero - -Avrai diverse opzioni. E' raccomandato di provare in primis `Advanced options` nel caso sai che cosa devi ripristinare, oppure `Light mode` se non sai cosa ripristinare. In casi estremi, se nessuna delle due opzioni funziona, dovresti scegliere `Aggressive mode`. - - - -#### **Advanced options** - -### Advanced options - -?> Questa modalità rimuoverà i canali e gli IOS specificati e li reinstallerà. Tutti gli altri dati (Anche i cIOS) verranno conservati. - -
-Clicca qui per mostrare cosa può essere recuperato con questo metodo. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Seleziona `Advanced options` dal menu. -1. Usa il D-Pad per selezionare cosa vorresti ripristinare. -1. Premi start per cominciare il ripristino. -1. Al termine del processo, acconsenti l'applicazione ad avviare le Impostazioni di Sistema. -1. Esegui un [Aggiornamento di sistema](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) per completare il ripristino. - -?> Adesso puoi riabilitare il [blocco degli aggiornamenti di sistema](block-updates). - -#### **Light mode** - -### Light mode - -?> Questa modalità cancellerà i dati del menu di sistema, i salvataggi della Bacheca dei messaggi Wii, gli IOS, e gli altri titoli di sistema che verranno rimpiazzati con una versione pulita. Nota che questo rimuoverà i cIOS e dovranno essere reinstallati di nuovo. Tutti gli altri dati non verrano eliminati. - -1. Seleziona `Light mode` dal menu. -1. Premi start per cominciare il ripristino. -1. Al termine del processo, acconsenti l'applicazione ad avviare le Impostazioni di Sistema. -1. Esegui un [Aggiornamento di sistema](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) per completare il ripristino. - -?> Adesso puoi riabilitare il [blocco degli aggiornamenti di sistema](block-updates). - -> Se ricevi l'errore 160-0101 quando avvii il sistema dopo aver utilizzato vWii Decaffeinator, rimuovi ogni disco, scollega eventuali dispositivi esterni e riavvia il sistema. - -#### **Aggressive mode** - -### Aggressive mode - -!> Questa modalità rimuoverà **tutto** per reinstallare una versione pulita degli IOS e degli altri canali. Nota che TUTTI i dati verranno cancellati e la NAND del vWii ritornerà nel suo stato di stock! - -1. Seleziona `Aggressive mode` dal menu. -1. Leggi l'avviso. Se vuoi procedere, premi Start per iniziare il processo. -1. Al termine del processo, acconsenti l'applicazione ad avviare le Impostazioni di Sistema. -1. Esegui un [Aggiornamento di sistema](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) per completare il ripristino. - -?> Adesso puoi riabilitare il [blocco degli aggiornamenti di sistema](block-updates). - -> Se ricevi l'errore 160-0101 quando avvii il sistema dopo aver utilizzato vWii Decaffeinator, rimuovi ogni disco, scollega eventuali dispositivi esterni e riavvia il sistema. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/it_IT/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/it_IT/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index 8060721d7c3..00000000000 --- a/translations/it_IT/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archivio - CBHC - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Exploit del browser {docsify-ignore} - -Per installare il CFW, dobbiamo prima avviare l'Homebrew Launcher attraverso l'exploit del browser. Assicurati che la tua Wii U sia connessa ad interneto per questo passaggio. - -### Istruzioni {docsify-ignore} - -1. Togli la scheda SD dal computer ed inseriscila nella console Wii U. -1. Avvia il browser e naviga sul sito `wiiuexploit.xyz`. -1. Premi su `Run Homebrew Launcher!`. La tua console dovrebbe avviare l'Homebrew Launcher. - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo bloccato, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/it_IT/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index f840dc35a95..00000000000 --- a/translations/it_IT/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archivio - CBHC {docsify-ignore-all} - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Scegli il tuo gioco DS VC - -La prima cosa da fare è decidere quale gioco DS Virtual Console (solitamente abbreviato come "VC") comprare. -Ricorda che il gioco in cui inietterai Haxchi/CBHC non sarà più giocabile fino a quando non disinstallerai Haxchi/CBHC e reinstallerai il gioco dall'eShop. - -### Giochi DS VC Compatibili - -?> Se hai una console Europea, c'è una possibilità che potresti già avere Dr. Kawashima's Brain Training: How Old is Your Brain? gratuitamente. Vai [nell'eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) e controlla se hai il gioco. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/it_IT/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/it_IT/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index efc49dab5e4..00000000000 --- a/translations/it_IT/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archivio - CBHC - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Installare l'Homebrew Launcher Channel {docsify-ignore} - -Questa pagina ti farà installare l'Homebrew Launcher Channel come applicazione direttamente nel tuo Menu Home per un facile accesso. - -?> Questa pagina è solo per gli utenti Haxchi e CBHC. L'Homebrew Launcher Channel (la versione dell'Homebrew Launcher che avvii dal Menu Wii U) **non** funzionerà con Mocha CFW! - -### Istruzioni {docsify-ignore} - -1. Accendi la tua console. -1. Premi il pulsante Home nel mentre che lo schermo `Autobooting...` appare per entrare nel boot menu. -1. Seleziona `Boot Homebrew Launcher` per avviare l'Homebrew Launcher. -1. Naviga nell'Homebrew Launcher e avvia l'applicazione WUP Installer GX2. -1. Utilizza il touchscreen per selezionare `Homebrew Launcher Channel`. Premi `Install` e conferma con `Yes`. -1. Scegli NAND come destinazione dell'installazione. Questo installerà l'Homebrew Launcher Channel nel Menu Wii U. -1. Una volta che il processo ha finito, premi il pulsante Home fino a quando non sei tornato nel Menu Wii U. -1. Ora vedrai l'Homebrew Launcher Channel installato nel tuo Menu Wii U. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/it_IT/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index 22f185d81b2..00000000000 --- a/translations/it_IT/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archivio - CBHC - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Avviare CFW {docsify-ignore} - -Ora che hai il tuo backup della NAND in caso qualcosa andasse storto, puoi avviare il CFW. - -A differenza di altre console come DSi, Wii o 3DS, il CFW della Wii U è temporaneo. Questo significa che appena la tua console viene riavviata, perderai il CFW e dovrai seguire queste istruzioni di nuovo. Questo può venir saltato installando CBHC. - -!> Installare CBHC in modo errato può brickare la tua Wii U. Assicurati di seguire le seguenti regole durante l'installazione di CBHC:
- Il gioco DS deve essere installato legittimamente dall'eShop!
- Non Formattare il sistema mentre CBHC è installato!
- Non eliminare l'account che ha comprato il gioco DS per Virtual Console!
- Non reinstallare lo stesso gioco utilizzando WUP Installer o l' eShop!
- Non installare Haxchi sopra CBHC!
- Non disinstallare il gioco DS Virtual Console senza prima [disinstallare correttamente CBHC](../uninstall-cbhc)!
- Non spostare il gioco DS Virtual Console su un dispositivo USB! - -!> Infrangere una di queste regole causerà un brick. - -> Se sei preoccupato di infrangere una di queste regole durante l'utilizzo di CBHC, prendi in considerazione l'utilizzo di controlli parentali per il tuo utente! Bloccare l'accesso a `Gestione Dati` e impostare la `Classificazione di gioco` alla valutazione più alta possibile, può aiutarti a prevenire errori che potresti fare quando utilizzi CBHC. Controlla [qui](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) per più informazioni su come cambiare le impostazioni del controllo parentale. - -### Istruzioni {docsify-ignore} - -1. Togli la scheda SD dal tuo PC e inseriscila nel Wii U. -1. Se non l'hai già fatto, installa il gioco DS Virtual Console che hai scelto dall'eShop. -1. Avvia l'Homebrew Launcher come [spiegato precedentemente](browser-exploit). -1. Naviga nell'Homebrew Launcher e apri l'app Haxchi. -1. Usa il d-pad per muovere il cursore sul gioco nel quale vuoi installare Haxchi e premi A. -1. Appena l'installazione ha finito, la tua console avvierà il Menu Wii U. Vedrai il tuo gioco rimpiazzato da un icona Haxchi. -1. Avvia il gioco Modificato. Questo riavvierà la console e abiliterà il CFW. -1. Avvia di nuovo il gioco modificato e tieni premuto A dopo averlo avviato. Questo avvierà l'Homebrew Launcher. -1. Naviga nell'Homebrew Launcher e avvia l'app CBHC. -1. Usa il d-pad per muovere il cursore sul gioco in cui avevi precedentemente installato Haxchi e premi A per installare CBHC. -1. Appena l'installazione ha finito, la tua console avvierà il Menu Wii U. -1. Riavvia la tua console. Se CBHC è stato installato correttamente, dovresti vedere un nuovo menu quando accendi la console. (CBHC non è compatibile con Quick Start. Se stai usando il Menu Quick Start, disattivalo.) -1. Usa il d-pad per spostarti su `Autoboot: Disabled` e premi A fino a quando non dice `Autoboot: System Menu`. -1. Usa il d-pad per spostarti su `Boot System Menu` e premi A. Questo avvierà il Menu Wii U con il CFW abilitato. -1. Ora la tua console avvierà automaticamente il CFW ad ogni riavvio della console. -1. Puoi inserire nuovamente qualunque dispositivo USB che avevi inserito prima della guida. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/cbhc/nand-backup.md b/translations/it_IT/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index d318b82e693..00000000000 --- a/translations/it_IT/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archivio - CBHC - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Fare un Backup della NAND {docsify-ignore} - -In caso qualcosa vada storto nei processi successivi e la tua Wii U si bricka, ripristinare un backup fatto precedentemente può ripararla. - -### Istruzioni {docsify-ignore} - -?> Il peso della NAND della Wii U (dipendendo dal tuo modello) può pesare 8GB o 32GB. Come risultato di questo, per creare un backup completo, la tua SD deve avere più memoria della NAND della tua console. Se non hai una SD grossa abbastanza, puoi saltare la sezione `MLC` che è opzionale, essa include salvataggi e dati di giochi che non sono necessari per recuperare la maggior parte di brick. - -?> Ripristinare il backup della nand sulla Wii U richiede ulteriori abilità di saldatura e esperienza hardware.
Tuttavia, fare un backup della NAND è **sempre** utile, quindi per favore, non saltatelo.
Il tuo Backup della NAND è unico per la tua console. Backup da altre console **NON** funzioneranno. - -1. Naviga attraverso l'Homebrew Launcher e avvia l'app `Wii U NAND Dumper`. -1. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **opzionale** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Premi A per iniziare il processo di dumping. -1. Quando il processo è completo, spegni la tua Wii U, prendi la SD fuori dalla Wii U ed inseriscila nel tuo PC. -1. Per assicurarti di non perdere file, copia i file: `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` e se scegli di usare un backup completo, `ogni file chiamato mlc.bin.part` sul tuo computer. -1. Elimina i file dalla tua SD per liberare spazio. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/it_IT/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index d100e631157..00000000000 --- a/translations/it_IT/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archivio - CBHC - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Preparazione Della SD {docsify-ignore} - -Ora inseriremo i file del CFW richiesti e alcuni altri file homebrew sulla scheda SD. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. Se la tua SD non è formattata in FAT32 usa [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) con 32k (32768) di Unità di allocazione per formattarla. **Non** chiamare la SD come `wiiu` o causerà problemi con homebrew. - -### Cosa Ti Servirà {docsify-ignore} - -- La versione più recente di [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Dovrai installare il file `payload.zip`. -- La versione 1.4 di [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Dovrai installare la versione 1.4 `homebrew_launcher.v1.4.zip` dell' Homebrew Launcher. -- La versione più recente di [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- La versione più recente di [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Dovrai installare il file `homebrew_launcher_channel.v2.1_fix.zip`. -- La versione più recente di [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La versione più recente dell'[Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Dovrai installare il file `wiiu-extracttosd.zip`. -- La versione più recente di [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- La versione più recente di [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- La versione più recente di SaveMii Mod. - -### Istruzioni {docsify-ignore} - -?> **Nota Bene** I file info.json e manifest.install non servono per la modifica e quindi possono essere eliminati. - -1. Inserisci la SD della tua Wii U nel PC. -1. Crea una cartella chiamata `install` nella root della tua SD. -1. Copia i contenuti di `homebrew_launcher_channel.v2.1_fix.zip` nella cartella `install` che hai creato precedentemente. -1. Copia i contenuti del file `haxchi.zip` nella root della tua SD. -1. Copia i contenuti del file `cbhc.zip` nella root della tua SD. -1. Copia i contenuti di `wup_installer_gx2.zip` nella root della tua SD. -1. Copia i contenuti del file `nanddumper.zip` nella root della tua SD. -1. Copia i contenuti del file `wiiu-extracttosd.zip` nella root della tua SD. -1. Copia i contenuti del file `homebrew_launcher.v.1.4.zip` nella root della tua SD. -1. Copia i contenuti del file `savemii_mod.zip` nella root della tua SD. -1. Copia il `payload.elf` dal `payload.zip` nella cartella `wiiu`. ----------- - -### Layout scheda SD {docsify-ignore} - -
-Clicca qui per mostrare il layout finale della scheda SD. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Anche tutte le altre app come disc2app, nanddumper, ecc. dovrebbero essere qui) - ┗ 📜payload.elf -``` - -
diff --git a/translations/it_IT/docs/user-guide/archive/cbhc/sidebar.md b/translations/it_IT/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 098d78bfc84..00000000000 --- a/translations/it_IT/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Pagina Iniziale](../../introduction) -- [Scegli un CFW](../cfw-choice) -- [Scegli il tuo Gioco DS VC](ds-vc-choice) -- [Preparazione della SD](sd-preparation) -- [Exploit del Browser](browser-exploit) -- [Fare un Backup della NAND](nand-backup) -- [Avviare CFW](launching-cfw) -- [Installare l'Homebrew Channel](installing-hblc) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../../donations) -- [Informazioni](../../about) \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/cfw-choice.md b/translations/it_IT/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 525989ed02c..00000000000 --- a/translations/it_IT/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Scegli il CFW Che Vuoi ---- -!> **I METODI DESCRITTI IN QUESTA PAGINA NON SONO PIÙ SUPPORTATI** -**IL METODO CORRENTE È DISPONIBILE [QUI](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -Ci sono due firmware custom principali: Haxchi/Coldboot Haxchi (solitamente abbreviato come "CBHC"), e Mocha. - -Haxchi/CBHC vengono iniettati in un gioco pagato DS Virtual Console. Haxchi dovrà essere avviato manualmente dal Menu Wii U per avviare firmware custom, mentre CBHC avvierà firmware custom automaticamente all'avvio del sistema. Mocha è accessibile dall'exploit del browser o con il metodo di Indexiine, il che lo rende l'unico custom firmware gratuito. - -Il custom firmware che userai sarà alla fine una **tua** preferenza. Non c'è nessun CFW giusto o sbagliato con cui continuare, quindi ti raccomandiamo di sentirti libero di scegliere quello che sembra migliore secondo le tue esigenze! - -## Haxchi - -- Richiede un gioco DS Virtual Console legittimo dall'eShop. -- Può essere avviato direttamente dal menu Wii U. -- Deve essere riavviato dal Menu Wii U ad ogni riavvio per abilitare il CFW. -- La sua funzionalità può essere estesa installando CBHC su un installazione di Haxchi. - -### [**Continua con Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installare CBHC in modo errato può brickare la tua Wii U! Assicurati di seguire le seguenti regole durante l'installazione di CBHC:
- Il gioco DS deve venir installato legittimamente dall'eShop!
- Non Formattare il sistema mentre CBHC è installato!
- Non eliminare l'account che ha comprato il gioco DS per Virtual Console!
- Non reinstallare lo stesso gioco utilizzando WUP Installer o l' eShop!
- Non installare Haxchi sopra CBHC! (Non brickerà, ma causerà un boot-loop! Tieni premuto A durante l'avvio per accedere all'Homebrew Launcher e disinstallare CBHC.)
- Non disinstallare il gioco DS Virtual Console senza prima [disinstallare correttamente CBHC](../uninstall-cbhc)!
- Non spostare il gioco DS Virtual Console su un dispositivo USB! - -!> Infrangere una di queste regole **può** causare un brick! - -> Se sei preoccupato di violare una di queste regole durante l'uso di CBHC, considera l'uso del Filtro Famiglia per il tuo utente! Bloccare l'accesso a `Gestione Dati` e impostare la `Classificazione di gioco` alla valutazione più alta possibile, può aiutarti a prevenire errori che potresti fare quando utilizzi CBHC. Controlla [qui](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) per più informazioni su come cambiare le impostazioni del Filtro Famiglia. - -- Richiede un gioco DS Virtual Console legittimo dall'eShop. -- Avvia direttamente il custom firmware all'avvio. - -### [**Continua con CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Non richiede alcun gioco, ed è quindi gratuito. -- Deve essere riavviato da Indexiine, quindi dall'Homebrew Launcher ad ogni riavvio per abilitare il CFW. -- Non è compatibile con il canale dell'Homebrew Channel. -- Può richiedere una connessione a Internet a seconda di quale entry point si sceglie. - -### [**Continua con Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/it_IT/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/it_IT/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 231eb6f09e3..00000000000 --- a/translations/it_IT/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archivio - Haxchi - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Exploit del browser {docsify-ignore} - -Per installare il CFW, dobbiamo prima avviare l'Homebrew Launcher attraverso l'exploit del browser. Assicurati che la tua Wii U sia connessa ad interneto per questo passaggio. - -### Istruzioni {docsify-ignore} - -1. Togli la SD dal tuo computer e mettila nella tua Wii U. -1. Avvia il browser e naviga sul sito `wiiuexploit.xyz`. -1. Premi su `Run Homebrew Launcher!`. La tua console dovrebbe avviare l'Homebrew Launcher. - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/it_IT/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index bc97dca464d..00000000000 --- a/translations/it_IT/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archivio - Haxchi {docsify-ignore-all} - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Scegli il tuo gioco DS VC - -La prima cosa da fare è decidere quale gioco DS Virtual Console (solitamente abbreviato come "VC") comprare. -Ricorda che il gioco in cui inietterai Haxchi/CBHC non sarà più giocabile fino a quando non disinstallerai Haxchi/CBHC e reinstallerai il gioco dall'eShop. - -### Giochi DS VC Compatibili - -?> Se hai una console Europea, c'è una possibilità che potresti già avere Dr. Kawashima's Brain Training: How Old is Your Brain? gratuitamente. Vai [nell'eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) e controlla se hai il gioco. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/it_IT/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/it_IT/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index 639aa10ee44..00000000000 --- a/translations/it_IT/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archivio - Haxchi - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Installare l'Homebrew Launcher Channel {docsify-ignore} - -Questa pagina ti farà installare l'Homebrew Launcher Channel come applicazione direttamente nel tuo Wii U Menu per un accesso facile. - -### Istruzioni {docsify-ignore} - -?> Installare l'Homebrew Launcher Channel è opzionale, poiché puoi già accederci tenendo premuto A mentre apri Haxchi. - -1. Accendi la tua console. -1. Avvia il gioco DS Haxchi dall' Menu Wii U. Questo avvierà nuovamente il Menu Wii U col CFW attivato. -1. Avvia il gioco DS Haxchi di nuovo tenendo premuto A. Questo avvierà l'Homebrew Launcher. -1. Naviga nell'Homebrew Launcher e avvia l'applicazione WUP Installer GX2. -1. Usa lo schermo per selezionare `Homebrew Launcher Channel`. Premi `Install` e conferma con `Sì`. -1. Scegli NAND come destinazione dell'installazione. Questo installerà l'Homebrew Launcher Channel nel Menu Wii U. -1. Una volta che il processo è finito, premi il pulsante Home fino a quando non sei tornato nel Menu Wii U. -1. Ora vedrai il canale dell'Homebrew Launcher installato nel Menu della tua Wii U. Tieni a mente che dovrai avviare il CFW ogni riavvio della console per avviare questo canale. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/it_IT/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index 8cf80c39f23..00000000000 --- a/translations/it_IT/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archivio - Haxchi - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Avviare CFW {docsify-ignore} - -Ora che hai il tuo backup della NAND in caso qualcosa andasse storto, puoi avviare il CFW. - -A differenza di altre console come DSi, Wii o 3DS, il CFW della Wii U è temporaneo. Questo significa che appena la tua console viene riavviata, perderai il CFW e dovrai seguire queste istruzioni di nuovo. Questo può venir saltato installando CBHC. - -### Istruzioni {docsify-ignore} - -?> Se l'installazione fallisce per qualche motivo, prova a disinstallare e riinstallare il gioco DS VC dall'eShop e assicurati che sta venendo installato sulla NAND. - -1. Togli la sd dal tuo PC e mettila nella Wii U. -1. Se non l'hai già fatto, installa il gioco DS VC che hai scelto o che avevi. -1. Avvia l'Homebrew Launcher come [spiegato precedentemente](browser-exploit). -1. Naviga nell'Homebrew Launcher e apri l'app Haxchi. -1. Usa il D-Pad per muovere il cursore sul gioco nel quale vuoi installare Haxchi e premi A. -1. Appena l'installazione ha finito, la tua console avvierà il Menu Wii U. Vedrai il tuo gioco rimpiazzato dall'icona di Haxchi. -1. Avvia il gioco modificato. Questo riavvierà la console e abiliterà CFW. -1. Ad ogni riavvio dovrai avviare ogni volta il gioco DS Haxchi per abilitare il CFW. -1. Adesso puoi rimettere qualunque dispositivo USB avevi messo prima di seguire la guida. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/haxchi/nand-backup.md b/translations/it_IT/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index a4dfa1afdd2..00000000000 --- a/translations/it_IT/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archivio - Haxchi - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Fare un Backup della NAND {docsify-ignore} - -In caso qualcosa vada storto nei processi successivi e la tua Wii U si bricka, ripristinare un backup fatto precedentemente può ripararla. - -### Istruzioni {docsify-ignore} - -?> Il peso della NAND della Wii U (dipendendo dal tuo modello) può pesare 8GB o 32GB. Come risultato di questo, per creare un backup completo, la tua SD deve avere più memoria della NAND della tua console. Se non hai una SD grossa abbastanza, puoi saltare la sezione `MLC` che è opzionale, essa include salvataggi e dati di giochi che non sono necessari per recuperare la maggior parte di brick. - -?> Ripristinare il backup della nand sulla Wii U richiede ulteriori abilità di saldatura e esperienza hardware.
Tuttavia, fare un backup della NAND è **sempre** utile, quindi per favore, non saltatelo.
Il tuo Backup della NAND è unico per la tua console. Backup da altre console **NON** funzioneranno. - -1. Naviga attraverso l'Homebrew Launcher e avvia l'app `Wii U NAND Dumper`. -1. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **opzionale** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Premi A per iniziare il processo di dumping. -1. Quando il processo è completo, spegni la tua Wii U, tira fuori la SD fuori dalla Wii U ed inseriscila nel tuo PC. -1. Per assicurarti di non perdere file, copia i file: `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` e se scegli di andare con un backup completo, `ogni file chiamato mlc.bin.part` sul tuo computer. -1. Elimina i file dalla tua SD per liberare spazio. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/it_IT/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d788b251071..00000000000 --- a/translations/it_IT/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archivio - Haxchi - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Preparazione Della SD {docsify-ignore} - -Ora inseriremo i file del CFW richiesti e alcuni altri file homebrew sulla scheda SD. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. Se la tua SD non è formattata in FAT32 usa [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) con 32k (32768) di Unità di allocazione per formattarla. **Non** chiamare la SD come `wiiu` o causerà problemi con homebrew. - -### Cosa ti servirà {docsify-ignore} - -- La versione più recente dell' [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Dovrai scaricare il file `payload.zip`. -- La versione 1.4 dell' [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Dovrai installare la versione 1.4 di `homebrew_launcher.v1.4.zip`. -- La versione più recente di [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- La versione più recente di [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Dovrai installare il file `homebrew_launcher_channel.v2.1_fix.zip`. -- La versione più recente di [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La versione più recente dell' [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Dovrai installare il file `wiiu-extracttosd.zip`. -- La versione più recente di [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- La versione più recente di SaveMii Mod. - -### Istruzioni {docsify-ignore} - -?> **Nota Bene** I file info.json e manifest.install non servono per la modifica e quindi possono essere eliminati. - -1. Inserisci la SD della tua Wii U nel PC. -1. Crea una cartella chiamata `install` nella root della tua SD. -1. Copia i contenuti di `homebrew_launcher_channel.v2.1_fix.zip` nella cartella `install` che hai creato precedentemente. -1. Copia i contenuti del file `haxchi.zip` nella root della tua SD. -1. Copia i contenuti di `wup_installer_gx2.zip` nella root della tua SD. -1. Copia i contenuti del file `nanddumper.zip` nella root della tua SD. -1. Copia i contenuti del file `wiiu-extracttosd.zip` nella root della tua SD. -1. Copia i contenuti del file `homebrew_launcher.v.1.4.zip` nella root della tua SD. -1. Copia i contenuti del file `savemii_mod.zip` nella root della tua SD. -1. Copia il `payload.elf` dal `payload.zip` nella cartella `wiiu`. ----------- - -### Layout scheda SD {docsify-ignore} - -
-Clicca qui per mostrare il layout finale della scheda SD. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Anche tutte le altre app come disc2app, nanddumper, ecc. dovrebbero essere qui) - ┗ 📜payload.elf -``` - -
diff --git a/translations/it_IT/docs/user-guide/archive/haxchi/sidebar.md b/translations/it_IT/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index 428d6c5a3d4..00000000000 --- a/translations/it_IT/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Pagina Iniziale](../../introduction) -- [Scegli un CFW](../cfw-choice) -- [Scegli il tuo Gioco DS VC](ds-vc-choice) -- [Preparazione della SD](sd-preparation) -- [Exploit del Browser](browser-exploit) -- [Fare un Backup della NAND](nand-backup) -- [Avviare CFW](launching-cfw) -- [Installare l'Homebrew Channel](installing-hblc) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../../donations) -- [Informazioni](../../about) \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/it_IT/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 3a221f22078..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archivio - Mocha - Scegli un Entrypoint - -!> **I METODI DESCRITTI IN QUESTA PAGINA NON SONO PIÙ SUPPORTATI** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../introduction)** - -## Exploit Online - -- Richiede una connessione internet ogni volta che vuoi avviare l'Homebrew Launcher. - -### [**Continua con l'Exploit Online**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Richiede una connessione Internet per il processo di installazione, ma può essere utilizzato offline una volta che è stato configurato. -- Richiede la modifica di un file di sistema. - -### [**Continua con Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/it_IT/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index efa5790fbe9..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archivio - Mocha - Indexiine - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../../introduction)** - -## Exploit del browser {docsify-ignore} - -Per installare il CFW, dobbiamo prima avviare l'Homebrew Launcher attraverso l'exploit del browser. Assicurati che la tua Wii U sia connessa ad interneto per questo passaggio. - -### Istruzioni {docsify-ignore} - -1. Togli la SD dal tuo computer e mettila nella tua Wii U. -1. Avvia il browser e naviga sul sito `wiiuexploit.xyz`. -1. Premi su `Run Homebrew Launcher!`. La tua console dovrebbe avviare l'Homebrew Launcher. - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo bloccato, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/it_IT/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index b5925ce207c..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archivio - Mocha - Indexiine - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../../introduction)** - -## Modificazioni al Browser Internet {docsify-ignore} - -Ora che hai il tuo backup della NAND in caso qualcosa andasse storto, puoi installare indexiine sul tuo sistema. - -?> Nel caso tu non abbia rimesso la tua SD nella tua Wii U dopo aver copiato il backup della NAND sul tuo computer, fallo ora. - - -### Istruzioni {docsify-ignore} - -1. Accendi la tua Wii U. -1. Avvia il browser e apri il sito `wiiuexploit.xyz`. -1. Premi su `Run Homebrew Launcher!`. La tua console dovrebbe avviare l'Homebrew Launcher. - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo bloccato, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. -1. Naviga attraverso l'Homebrew Launcher e avvia l'app `Indexiine Installer`. -1. Premi A per installare Indexiine. -1. Quando il processo ha finito, chiudi l'Homebrew Launcher per tornare indietro nel tuo Menu Wii U. - -L'Homebrew Launcher verrà ora avviato ogni volta che aprirai il Browser Internet anche senza una connessione internet. Se vuoi visitare un altro sito, aprilo prima che Indexiine inneschi l'exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/it_IT/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index e6bf4caf488..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archivio - Mocha - Indexiine - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../../introduction)** - -## Avviare CFW {docsify-ignore} - -A differenza di altre console come DSi, Wii o 3DS, il CFW della Wii U è temporaneo. Questo significa che appena la tua console viene riavviata, perderai il CFW e dovrai seguire queste istruzioni di nuovo. Questo può venir saltato installando CBHC. - -### Istruzioni {docsify-ignore} - -1. Avvia l'Homebrew Launcher aprendo il Browser. -1. Naviga nell'Homebrew Launcher e apri l'app Mocha CFW. -1. Ti riporterà nell'Homebrew Launcher e abiliterà CFW. -1. Dovrai ri-fare questi passaggi ogni riavvio per avviare CFW. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/it_IT/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index aa118ab2c8d..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archivio - Mocha - Indexiine - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../../introduction)** - -## Fare un Backup della NAND {docsify-ignore} - -In caso qualcosa vada storto nei processi successivi e la tua Wii U si bricka, ripristinare un backup fatto precedentemente può ripararla. - -### Istruzioni {docsify-ignore} - -?> Il peso della NAND della Wii U (dipendendo dal tuo modello) può pesare 8GB o 32GB. Come risultato di questo, per creare un backup completo, la tua SD deve avere più memoria della NAND della tua console. Se non hai una SD grossa abbastanza, puoi saltare la sezione `MLC` che è opzionale, essa include salvataggi e dati di giochi che non sono necessari per recuperare la maggior parte di brick. - -?> Ripristinare il backup della nand sulla Wii U richiede ulteriori abilità di saldatura e esperienza hardware.
Tuttavia, fare un backup della NAND è **sempre** utile, quindi per favore, non saltatelo.
Il tuo Backup della NAND è unico per la tua console. Backup da altre console **NON** funzioneranno. - -1. Naviga attraverso l'Homebrew Launcher e avvia l'app `Wii U NAND Dumper`. -1. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **opzionale** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Premi A per iniziare il processo di dumping. -1. Quando il processo è completo, spegni la tua Wii U, prendi la SD fuori dalla Wii U ed inseriscila nel tuo PC. -1. Per assicurarti di non perdere file, copia i file: `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` e se scegli di usare un backup completo, `ogni file chiamato mlc.bin.part` sul tuo computer. -1. Elimina i file dalla tua SD per liberare spazio. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/it_IT/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index 6cb4f1cc399..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archivio - Mocha - Indexiine - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../../introduction)** - -## Preparazione Della SD {docsify-ignore} - -Ora inseriremo i file del CFW richiesti e alcuni altri file homebrew sulla scheda SD. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. Se la tua SD non è formattata in FAT32 usa [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) con 32k (32768) di Unità di allocazione per formattarla. **Non** chiamare la SD come `wiiu` o causerà problemi con homebrew. - -### Cosa ti servirà {docsify-ignore} - -- Il Mocha config. -- La versione più recente dell' [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Dovrai scaricare il file `payload.zip`. -- La versione 1.4 dell' [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Dovrai installare la versione 1.4 di `homebrew_launcher.v1.4.zip`. -- La versione più recente di [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- La versione più recente di [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La versione più recente dell' [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Dovrai installare il file `wiiu-extracttosd.zip`. -- La versione più recente di [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- La versione più recente di SaveMii Mod. -- La versione più recente di [Indexiine Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Istruzioni {docsify-ignore} - -?> **Nota Bene** I file info.json e manifest.install non servono per la modifica e quindi possono essere eliminati. - -1. Inserisci la SD della tua Wii U nel PC. -1. Copia i contenuti di `wup_installer_gx2.zip` nella root della tua SD. -1. Copia i contenuti del file `nanddumper.zip` nella root della tua SD. -1. Copia i contenuti del file `wiiu-extracttosd.zip` nella root della tua SD. -1. Copia i contenuti del file `homebrew_launcher.v.1.4.zip` nella root della tua SD. -1. Copia i contenuti di `mocha.zip` nella root della tua SD. -1. Copia i contenuti di `indexiine-installer.zip` nella root della tua SD. -1. Copia i contenuti del file `savemii_mod.zip` nella root della tua SD. -1. Copia il file `config.ini` nella cartella `/wiiu/apps/mocha` nella tua SD. -1. Copia il `payload.elf` dal `payload.zip` nella cartella `wiiu` nella tua SD. ----------- - -### Layout scheda SD {docsify-ignore} - -
-Clicca qui per mostrare il layout finale della scheda SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Anche tutte le altre app come disc2app, nanddumper, ecc. dovrebbero essere qui) - ┗ 📜payload.elf -``` - -
diff --git a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/it_IT/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index d6f76efa451..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Pagina Iniziale](../../../introduction) -- [Scegli un CFW](../../cfw-choice) -- [Scegli un Punto di accesso](../entrypoint-choice) -- [Preparazione della SD](sd-preparation) -- [Exploit del Browser](browser-exploit) -- [Fare un Backup della NAND](nand-backup) -- [Modificazioni al Browser](browser-modding) -- [Avviare CFW](launching-cfw) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../../../donations) -- [Informazioni](../../../about) \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 97fb71ca352..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archivio - Mocha - Exploit online - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../../introduction)** - -## Exploit Del Browser {docsify-ignore} - -Per installare il CFW, dobbiamo prima avviare l'Homebrew Launcher attraverso l'exploit del browser. Assicurati che la tua Wii U sia connessa ad interneto per questo passaggio. - -### Istruzioni {docsify-ignore} - -1. Togli la SD dal tuo computer e mettila nella tua Wii U. -1. Avvia il browser e naviga nel sito `wiiuexploit.xyz`. -1. Premi su `Run Homebrew Launcher!`. La tua console dovrebbe avviare l'Homebrew Launcher. - - Se la tua Wii U rimane bloccata su uno schermo bianco o su un altro schermo, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 5189b725215..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archivio - Mocha - Exploit online - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../../introduction)** - -## Avviare CFW {docsify-ignore} - -Ora che hai il tuo backup della NAND in caso qualcosa andasse storto, puoi avviare il CFW. - -A differenza di altre console come DSi, Wii o 3DS, il CFW della Wii U è temporaneo. Questo significa che appena la tua console viene riavviata, perderai il CFW e dovrai seguire queste istruzioni di nuovo. Questo può venir saltato installando CBHC. - -### Istruzioni {docsify-ignore} - -1. Togli la scheda SD dal tuo PC e inseriscila nel Wii U. -1. Avvia l'Homebrew Launcher come [spiegato precedentemente](browser-exploit). -1. Naviga nell'Homebrew Launcher e apri l'app Mocha CFW. -1. Ti riporterà nell'Homebrew Launcher e abiliterà CFW. -1. Dovrai ri-fare questi passaggi ogni riavvio per avviare CFW. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 0f94ed81922..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archivio - Mocha - Exploit online - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../../introduction)** - -## Fare un Backup della NAND {docsify-ignore} - -In caso qualcosa vada storto nei processi successivi e la tua Wii U si bricka, ripristinare un backup fatto precedentemente può ripararla. - -### Istruzioni {docsify-ignore} - -?> Il peso della NAND della Wii U (dipendendo dal tuo modello) può pesare 8GB o 32GB. Come risultato di questo, per creare un backup completo, la tua SD deve avere più memoria della NAND della tua console. Se non hai una SD grossa abbastanza, puoi saltare la sezione `MLC` che è opzionale, essa include salvataggi e dati di giochi che non sono necessari per recuperare la maggior parte di brick. - -?> Ripristinare il backup della nand sulla Wii U richiede ulteriori abilità di saldatura e esperienza hardware.
Tuttavia, fare un backup della NAND è **sempre** utile, quindi per favore, non saltatelo.
Il tuo Backup della NAND è unico per la tua console. Backup da altre console **NON** funzioneranno. - -1. Naviga attraverso l'Homebrew Launcher e avvia l'app `Wii U NAND Dumper`. -1. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **opzionale** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Premi A per iniziare il processo di dumping. -1. Quando il processo è completo, spegni la tua Wii U, prendi la SD fuori dalla Wii U ed inseriscila nel tuo PC. -1. Per assicurarti di non perdere file, copia i file: `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` e se scegli di usare un backup completo, `ogni file chiamato mlc.bin.part` sul tuo computer. -1. Elimina i file dalla tua SD per liberare spazio. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index 2d07a2bc0d2..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archivio - Mocha - Exploit online - -!> **QUESTO METODO NON È PIÙ SUPPORTATO** -**IL METODO CORRENTE È DISPONIBILE [QUI](../../../introduction)** - -## Preparazione Della SD {docsify-ignore} - -Ora inseriremo i file del CFW richiesti e alcuni altri file homebrew sulla scheda SD. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. Se la tua SD non è formattata in FAT32 usa [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) con 32k (32768) di Unità di allocazione per formattarla. **Non** chiamare la SD come `wiiu` o causerà problemi con homebrew. - -### Cosa ti servirà {docsify-ignore} - -- Il Mocha config. -- La versione più recente dell' [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Dovrai scaricare il file `payload.zip`. -- La versione 1.4 dell' [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Dovrai installare la versione 1.4 di `homebrew_launcher.v1.4.zip`. -- La versione più recente di [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- La versione più recente di [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La versione più recente dell' [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Dovrai installare il file `wiiu-extracttosd.zip`. -- La versione più recente di [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- La versione più recente di SaveMii Mod. - -### Istruzioni {docsify-ignore} - -?> **Nota Bene** I file info.json e manifest.install non servono per la modifica e quindi possono essere eliminati. - -1. Inserisci la SD della tua Wii U nel PC. -1. Copia i contenuti di `wup_installer_gx2.zip` nella root della tua SD. -1. Copia i contenuti del file `nanddumper.zip` nella root della tua SD. -1. Copia i contenuti del file `wiiu-extracttosd.zip` nella root della tua SD. -1. Copia i contenuti del file `homebrew_launcher.v.1.4.zip` nella root della tua SD. -1. Copia i contenuti di `mocha.zip` nella root della tua SD. -1. Copia i contenuti del file `savemii_mod.zip` nella root della tua SD. -1. Copia il file `config.ini` nella cartella `/wiiu/apps/mocha` nella tua SD. -1. Copia il `payload.elf` dal `payload.zip` nella cartella `wiiu` nella tua SD. ----------- - -### Layout scheda SD {docsify-ignore} - -
-Clicca qui per mostrare il layout finale della scheda SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Anche tutte le altre app come disc2app, nanddumper, ecc. dovrebbero essere qui) - ┗ 📜payload.elf -``` - -
diff --git a/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 59713e6bcf2..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Exploit Online** -- [Pagina Iniziale](../../../introduction) -- [Scegli un CFW](../../cfw-choice) -- [Scegli un Punto di accesso](../entrypoint-choice) -- [Preparazione della SD](sd-preparation) -- [Exploit del Browser](browser-exploit) -- [Fare un Backup della NAND](nand-backup) -- [Avviare CFW](launching-cfw) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../../../donations) -- [Informazioni](../../../about) \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/mocha/sidebar.md b/translations/it_IT/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index 5c6929adca2..00000000000 --- a/translations/it_IT/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Pagina Iniziale](../../introduction) -- [Scegli un CFW](../cfw-choice) -- [Scegli un Punto di accesso](entrypoint-choice) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../../donations) -- [Informazioni](../../about) \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/sidebar.md b/translations/it_IT/docs/user-guide/archive/sidebar.md deleted file mode 100644 index afb68b7ee70..00000000000 --- a/translations/it_IT/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archivio** -- [Pagina Iniziale](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../../donations) -- [Informazioni](../../about) -- **Privacy** -- [Informativa sulla Privacy](../../privacy-policy) diff --git a/translations/it_IT/docs/user-guide/archive/tiramisu/autoboot.md b/translations/it_IT/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index 20dc3d99962..00000000000 --- a/translations/it_IT/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Avvio automatico di Tiramisu - -Attualmente, ogni volta che vorrai lanciare Tiramisu dovrai lanciare l'app Informazioni per la salute e la sicurezza. Se desideri avviare automaticamente Tiramisu a ogni accensione, è possibile avviare automaticamente l'app Informazioni per la salute e la sicurezza. - -### Istruzioni - -1. Avvia la console per avviare nel menu Wii U, apri l'app Informazioni per la salute e la sicurezza e tieni premuto il pulsante X per aprire il menu Environment Loader. -1. Naviga l'elenco utilizzando il D-Pad e naviga all'ambiente `installer`, premi A per avviarlo. -1. Premi A per selezionare `Check`. -1. Seleziona `Boot options`. -1. Ti verrà chiesto se vuoi cambiare il titolo di avvio. Premi A per selezionare `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. Il PayloadLoader verrà ora avviato automaticamente ad ogni avvio. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Naviga l'elenco utilizzando il D-Pad per selezionare il titolo che vuoi avviare automaticamente, poi premi il pulsante Y per impostarlo come titolo predefinito. - - Premi A per avviare il titolo selezionato. - diff --git a/translations/it_IT/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/it_IT/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index 8a158d86dcf..00000000000 --- a/translations/it_IT/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Exploit del Browser - -Assicurati che la tua Wii U sia connessa ad interneto per questo passaggio. - -### Istruzioni - -1. Togli la scheda SD dal computer e inseriscila nella console Wii U. -1. Avvia il browser e naviga sul sito `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo bloccato, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/it_IT/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/it_IT/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 40c579866ea..00000000000 --- a/translations/it_IT/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Completamento dell'installazione - -Ora che PayloadLoader, Environment Loader e Tiramisu sono installati, possiamo completare l'installazione. - -Faremo in modo che l'ambiente di Tiramisu si avvii automaticamente quando la console avvierà l'app Informazioni per la salute e la sicurezza (o quando la avvierai manualmente se hai scelto di non avviarlo automaticamente) e selezioneremo il Menu Wii U come predefinito oltre a scaricare applicazioni homebrew aggiuntive. - -### Impostare PayloadLoader, Environment Loader e Tiramisu - -1. Accendi la tua Wii U. - - L'Environment Loader dovrebbe apparire. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. Nel Selettore di Avvio di Tiramisu, il `Menu Wii U` dovrebbe essere già selezionato, premi Y per impostarlo come opzione predefinita di autoavvio, e premi A per avviare il Menu Wii U. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Una volta entrato nell'ambiente Tiramisu, puoi aprire il Mii Maker in qualsiasi momento per entrare nell'Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** è un modulo di Tiramisu che ti permette di connettere i controller Bluetooth più popolari in modo wireless. Vedi [questa pagina](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) per maggiori dettagli. -- L'**Homebrew Appstore** ti permette di navigare e scaricare app homebrew direttamente dalla tua Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- Il file `wiiu-extracttosd.zip` di [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/it_IT/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/it_IT/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 388bb090975..00000000000 --- a/translations/it_IT/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installare PayloadLoader - -Ora che hai il tuo backup della NAND nel caso qualcosa andasse storto, puoi installare PayloadLoader sul tuo sistema. - -Installare PayloadLoader ti permetterà di accedere a Tiramisu eseguendo l'app Informazioni per la salute e la sicurezza. - -!> Un reset di fabbrica **non** disinstallerà il PayloadLoader iniettato. Segui [disinstalla PayloadLoader](../../uninstall-payloadloader) per rimuovere il PayloadLoader. - -### Istruzioni - -?> Se hai già eseguito Tiramisu, riavvia la console prima di eseguire nuovamente l'exploit del browser. - -1. Togli la scheda SD dal tuo PC e inseriscila nel Wii U. -1. Esegui l'exploit del browser web come [precedentemente spiegato](browser-exploit) ma questa volta dovrai tenere premuto il pulsante X per aprire il menu Environment Loader. -1. Naviga l'elenco utilizzando il D-Pad e naviga all'ambiente `installer`, premi A per avviarlo. -1. Premi il pulsante A per controllare se è possibile installare il PayloadLoader. - - Dovrebbe ora dirti che il PayloadLoader può essere installato sull'app Informazioni per la salute e la sicurezza. -1. Premi il pulsante A per selezionare `Install / Update`. -1. Ti verrà chiesto se vuoi davvero installare il PayloadLoader. Usa il D-Pad per selezionare `Install` e premi A. -1. Al termine del processo di installazione, premi A per spegnere la console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/it_IT/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 00fba80b0ef..00000000000 --- a/translations/it_IT/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Fare un Backup della NAND - -In caso qualcosa vada storto nei processi successivi e la tua Wii U si bricka, ripristinare un backup fatto precedentemente può ripararla. - -### Istruzioni - -?> Il peso della NAND della Wii U (dipendendo dal tuo modello) può pesare 8GB o 32GB. Come risultato di questo, per creare un backup completo, la tua SD deve avere più memoria della NAND della tua console. Se non hai una SD grossa abbastanza, puoi saltare la sezione `MLC` che è opzionale, essa include salvataggi e dati di giochi che non sono necessari per recuperare la maggior parte di brick. - -?> Ripristinare il backup della nand sulla Wii U richiede ulteriori abilità di saldatura e esperienza hardware.
Tuttavia, fare un backup della NAND è **sempre** utile, quindi per favore, non saltatelo.
Il tuo Backup della NAND è unico per la tua console. Backup da altre console **NON** funzioneranno. - -1. Naviga a `nanddumper` usando il Gamepad e premi A per lanciarlo. -1. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **opzionale** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Premi A per iniziare il processo di dumping. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Elimina i file dalla tua SD per liberare spazio. - -?> **Se il PayloadLoader è già installato nell'app Informazioni per la salute e la sicurezza e la tua console lo avvia automaticamente, non è necessario continuare a seguire la guida.** diff --git a/translations/it_IT/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/it_IT/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index aaf0b0815b6..00000000000 --- a/translations/it_IT/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Preparazione della SD - -Ora inseriremo i file del CFW richiesti e alcuni altri file homebrew sulla scheda SD. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. Se la tua SD non è formattata in FAT32 usa [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) con 32k (32768) di Unità di allocazione per formattarla.
**Non** chiamare la scheda SD `wiiu` o causerà problemi con homebrew. - -### Cosa ti servirà - -- Gli ultimi file da [Tiramisu per il tuo caffè](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Istruzioni - -1. Inserisci la SD della tua Wii U nel PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copia in `/wiiu/environments/tiramisu/modules/setup` sulla tua scheda SD il file `01_sigpatches.rpx`. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### Layout scheda SD {docsify-ignore} - -
-Clicca qui per mostrare il layout finale della scheda SD. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/it_IT/docs/user-guide/archive/tiramisu/sidebar.md b/translations/it_IT/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 1ac28ec9d60..00000000000 --- a/translations/it_IT/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Pagina Iniziale](../../introduction) -- [Preparazione della SD](sd-preparation) -- [Exploit del Browser](browser-exploit) -- [Fare un Backup della NAND](nand-backup) -- [Installare il PayloadLoader](installing-payloadloader) -- [Avvio automatico di Tiramisu](autoboot) -- [Completamento del setup](finalizing-setup) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../donations) -- [Informazioni](../about) diff --git a/translations/it_IT/docs/user-guide/archive/vwii/browser-exploit.md b/translations/it_IT/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index e989d35c228..00000000000 --- a/translations/it_IT/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Avviare un Exploit ---- -Per installare l'Homebrew Channel, abbiamo prima bisogno di creare un backup della NAND ed essere in grado di lanciare l'Homebrew Launcher attraverso un exploit, come l'exploit del browser. - -Assicurati che la tua Wii U sia connessa ad interneto per questo passaggio. - -### Istruzioni {docsify-ignore} - -1. Avvia un exploit a tua scelta: - - Se non hai mai eseguito homebrew prima, "avviare l'exploit" significa eseguire l'exploit del browser. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo bloccato, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. - - - Se stai facendo il coldboot in PayloadLoader, "avviare l'exploit" significa avviare la tua console. - - - Se stai eseguendo il PayloadLoader tramite l'applicazione Informazioni & per la salute e la sicurezza, "lanciare l'exploit" significa lanciare l'applicazione Informazioni & per la salute e la sicurezza. - -1. Durante il lancio dell'exploit a tua scelta, tieni premuto il pulsante B (se stai seguendo la sezione `Backup NAND`) o il pulsante X (se stai seguendo la sezione `Installazione dell'Homebrew Channel`). diff --git a/translations/it_IT/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/it_IT/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 8b2f75b3f78..00000000000 --- a/translations/it_IT/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Completamento dell'installazione - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/it_IT/docs/user-guide/archive/vwii/installing-cioses.md b/translations/it_IT/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index 830b72280cc..00000000000 --- a/translations/it_IT/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installazione dei cIOS - -1. Accendi il tuo Wii U e avvia il vWii. -2. Avvia L'Homebrew Channel. -3. Avvia d2x cIOS Installer. -4. Imposta tutto in modo da corrispondere a quanto segue: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Imposta tutto in modo da corrispondere a quanto segue: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Imposta tutto in modo da corrispondere a quanto segue: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/it_IT/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/it_IT/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index 1088238e97e..00000000000 --- a/translations/it_IT/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installazione dell'Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Poi premi il pulsante HOME per tornare al menu Wii U. -4. Avvia la vWii (l'icona del Menu Wii). - - Se l'installazione è riuscita, dovresti vedere l'Homebrew Channel nel tuo Menu Wii. diff --git a/translations/it_IT/docs/user-guide/archive/vwii/nand-backup.md b/translations/it_IT/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index de6e446f91b..00000000000 --- a/translations/it_IT/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Backup della NAND - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Premi A per iniziare il processo di dumping. -4. Quando il processo è completo, spegni la tua Wii U, prendi la SD fuori dalla Wii U ed inseriscila nel tuo PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Elimina i file dalla tua SD per liberare spazio. -7. Togli la scheda SD dal computer e inseriscila nella console Wii U. diff --git a/translations/it_IT/docs/user-guide/archive/vwii/patching-ios80.md b/translations/it_IT/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index cec05a699d3..00000000000 --- a/translations/it_IT/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Avvia Patched IOS 80 Installer for vWii. -2. Leggi la schermata di avviso e aspetta 30 secondi. -3. Premi qualsiasi tasto per installarlo. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/it_IT/docs/user-guide/archive/vwii/sd-preparation.md b/translations/it_IT/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index fd6455d50a2..00000000000 --- a/translations/it_IT/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -Questa pagina ti guiderà nel processo di modding del tuo vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### Cosa ti servirà - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Istruzioni - -1. Inserisci la SD della tua Wii U nel PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Togli la scheda SD dal computer e inseriscila nella console Wii U. diff --git a/translations/it_IT/docs/user-guide/archive/vwii/sidebar.md b/translations/it_IT/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/it_IT/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/it_IT/docs/user-guide/aroma/autoboot.md b/translations/it_IT/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index 5ef1bd62cc1..00000000000 --- a/translations/it_IT/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Istruzioni - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. Ti verrà chiesto se vuoi cambiare il titolo di avvio. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. Il PayloadLoader verrà ora avviato automaticamente ad ogni avvio. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Naviga l'elenco utilizzando il D-Pad per selezionare il titolo che vuoi avviare automaticamente, poi premi il pulsante Y per impostarlo come titolo predefinito. - - Premi A per avviare il titolo selezionato. diff --git a/translations/it_IT/docs/user-guide/aroma/browser-exploit.md b/translations/it_IT/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index f1afdde6ed7..00000000000 --- a/translations/it_IT/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Exploit del Browser - -Assicurati che la tua Wii U sia connessa ad interneto per questo passaggio. - -### Istruzioni - -1. Togli la scheda SD dal computer e inseriscila nella console Wii U. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo bloccato, aspetta qualche secondo. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/it_IT/docs/user-guide/aroma/finalizing-setup.md b/translations/it_IT/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index 1378a729373..00000000000 --- a/translations/it_IT/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Completamento dell'installazione - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. Vedi [questa pagina](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) per maggiori dettagli. -- L'**Homebrew Appstore** ti permette di navigare e scaricare app homebrew direttamente dalla tua Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- Il file `wiiu-extracttosd.zip` di [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Togli la scheda SD dal computer e inseriscila nella console Wii U. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/it_IT/docs/user-guide/aroma/getting-started.md b/translations/it_IT/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/it_IT/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/it_IT/docs/user-guide/aroma/installing-payloadloader.md b/translations/it_IT/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 977e593552b..00000000000 --- a/translations/it_IT/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installare PayloadLoader - -Ora che hai il tuo backup della NAND nel caso qualcosa andasse storto, puoi installare PayloadLoader sul tuo sistema. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Istruzioni - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Togli la scheda SD dal tuo PC e inseriscila nel Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Premi il pulsante A per controllare se è possibile installare il PayloadLoader. - - Dovrebbe ora dirti che il PayloadLoader può essere installato sull'app Informazioni per la salute e la sicurezza. -7. Press the A button to select `Install / Update`. -8. Ti verrà chiesto se vuoi davvero installare il PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/it_IT/docs/user-guide/aroma/nand-backup.md b/translations/it_IT/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 3f66b552ef2..00000000000 --- a/translations/it_IT/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Fare un Backup della NAND - -In caso qualcosa vada storto nei processi successivi e la tua Wii U si bricka, ripristinare un backup fatto precedentemente può ripararla. - -### Istruzioni - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Il tuo Backup della NAND è unico per la tua console. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Premi A per iniziare il processo di dumping. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/it_IT/docs/user-guide/aroma/sd-preparation.md b/translations/it_IT/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index 84dfffd38be..00000000000 --- a/translations/it_IT/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Preparazione della SD - -We will now place the required Aroma files on the SD Card. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Istruzioni - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Inserisci la SD della tua Wii U nel PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### Layout scheda SD {docsify-ignore} - -
-Clicca qui per mostrare il layout finale della scheda SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/it_IT/docs/user-guide/aroma/sidebar.md b/translations/it_IT/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index d70bdba737a..00000000000 --- a/translations/it_IT/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Pagina Iniziale](../introduction) -- [Getting Started with Aroma](getting-started) -- [Preparazione della SD](sd-preparation) -- [Exploit del Browser](browser-exploit) -- [Backup della NAND](nand-backup) -- [Installare PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Completamento dell'installazione](finalizing-setup) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../donations) -- [Informazioni](../about) diff --git a/translations/it_IT/docs/user-guide/cbhc/browser-exploit.md b/translations/it_IT/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index 3a19eb6de85..00000000000 --- a/translations/it_IT/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Exploit del browser {docsify-ignore} - -Per installare CFW, dobbiamo prima avviare l'Homebrew Launcher attraverso l'exploit del browser. Assicurati che il tuo Wii U sia connesso ad internet per questo passaggio. - -### Istruzioni {docsify-ignore} - -1. Togli la scheda SD dal computer ed inseriscila nella console Wii U. -1. Avvia il browser e naviga sul sito `wiiuexploit.xyz`. -1. Premi su `Run Homebrew Launcher!`. La tua console dovrebbe avviare l'Homebrew Launcher. - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo bloccato, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/cbhc/ds-vc-choice.md b/translations/it_IT/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 70be9b12e67..00000000000 --- a/translations/it_IT/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Scegli il tuo gioco DS VC - -La prima cosa da fare è decidere quale gioco DS Virtual Console (solitamente abbreviato come "VC") comprare. -Ricorda che il gioco in cui inietterai Haxchi/CBHC non sarà più giocabile fino a quando non disinstallerai Haxchi/CBHC e reinstallerai il gioco dall'eShop. - -### Giochi DS VC Compatibili - -?> Se hai una console Europea, c'è una possibilità che potresti già avere Dr. Kawashima's Brain Training: How Old is Your Brain? gratuitamente. Vai [nell'eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) e controlla se hai il gioco. - -Se non hai nessuno dei giochi Menzionati qui sotto, ti consigliamo di comprare Brain Age (Nord America) o Brain Training (Europa) poiché è il più economico tra i giochi compatibili, ed è il gioco che probabilmente giocheresti meno. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/it_IT/docs/user-guide/cbhc/installing-hblc.md b/translations/it_IT/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index bfb58fc6894..00000000000 --- a/translations/it_IT/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installare l'Homebrew Launcher Channel {docsify-ignore} - -Questa pagina ti farà installare l'Homebrew Launcher Channel come applicazione direttamente nel tuo Menu Wii U per un facile accesso. - -?> Questa pagina è solo per gli utenti Haxchi e CBHC. L'Homebrew Launcher Channel (la versione dell'Homebrew Launcher che avvii dal Menu Wii U) **non** funzionerà con Mocha CFW! - -### Istruzioni {docsify-ignore} - -1. Accendi la tua console. -1. Premi il pulsante Home nel mentre che lo schermo `Autobooting...` appare per entrare nel boot menu. -1. Seleziona `Boot Homebrew Launcher` per avviare l'Homebrew Launcher. -1. Naviga nell'Homebrew Launcher e avvia l'applicazione WUP Installer GX2. -1. Utilizza il touchscreen per selezionare `Homebrew Launcher Channel`. Premi `Install` e conferma con `Yes`. -1. Scegli NAND come destinazione dell'installazione. Questo installerà l'Homebrew Launcher Channel nel Menu Wii U. -1. Una volta che il processo ha finito, premi il pulsante Home fino a quando non sei tornato nel Menu Wii U. -1. Ora vedrai l'Homebrew Launcher Channel installato nel tuo Menu Wii U. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/cbhc/launching-cfw.md b/translations/it_IT/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index a9eca857aed..00000000000 --- a/translations/it_IT/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Avviare CFW {docsify-ignore} - -Ora che hai il tuo backup della NAND in caso qualcosa andasse storto, puoi avviare CFW. - -A differenza di altre console tipo DSi, Wii, o 3DS, il CFW della Wii U è temporaneo. Questo significa che appena la tua console viene riavviata, perderai il CFW e dovrai seguire queste istruzioni nuovamente. Questo può venir saltato installando CBHC. - -!> Installare CBHC in modo errato può brickare la tua Wii U. Assicurati di seguire le seguenti regole durante l'installazione di CBHC:
- Il gioco DS deve venir installato legittimamente dall'eShop!
- Non Formattare il sistema mentre CBHC è installato!
- Non eliminare l'account che ha comprato il gioco DS Virtual Console!
- Non reinstallare lo stesso gioco utilizzando WUP Installer o l' eShop!
- Non installare Haxchi sopra CBHC!
- Non disinstallare il gioco DS Virtual Console senza prima [disinstallare correttamente CBHC](../uninstall-cbhc)!
- Non spostare il gioco DS Virtual Console su un dispositivo USB! - -!> Non seguire una delle regole qui sopra risulterà in un brick. - -> Se sei preoccupato di infrangere una di queste regole durante l'utilizzo di CBHC, prendi in considerazione l'utilizzo di controlli parentali per il tuo utente! Bloccare l'accesso a `Gestione Dati` e impostare la `Classificazione di gioco` alla valutazione più alta possibile, può aiutarti a prevenire errori che potresti fare quando utilizzi CBHC. Controlla [qui](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) per più informazioni su come cambiare le impostazioni del controllo parentale. - -### Istruzioni {docsify-ignore} - -1. Togli la scheda SD dal tuo PC e inseriscila nel Wii U. -1. Se non l'hai già fatto, installa il gioco DS Virtual Console che hai scelto dall'eShop. -1. Avvia l'Homebrew Launcher come [spiegato precedentemente](browser-exploit). -1. Naviga nell'Homebrew Launcher e apri l'app Haxchi. -1. Usa il d-pad per muovere il cursore sul gioco nel quale vuoi installare Haxchi e premi A. -1. Appena l'installazione ha finito, la tua console avvierà il Menu Wii U. Vedrai il tuo gioco rimpiazzato da un icona Haxchi. -1. Avvia il gioco Modificato. Questo riavvierà la console e abiliterà il CFW. -1. Avvia di nuovo il gioco modificato e tieni premuto A dopo averlo avviato. Questo avvierà l'Homebrew Launcher. -1. Naviga nell'Homebrew Launcher e avvia l'app CBHC. -1. Usa il d-pad per muovere il cursore sul gioco in cui avevi precedentemente installato Haxchi e premi A per installare CBHC. -1. Appena l'installazione ha finito, la tua console avvierà il Menu Wii U. -1. Riavvia la tua console. Se CBHC è stato installato correttamente, dovresti vedere un nuovo menu quando accendi la console. (CBHC non è compatibile con Quick Start. Se stai usando il Menu Quick Start, disattivalo.) -1. Usa il d-pad per spostarti su `Autoboot: Disabled` e premi A fino a quando non dice `Autoboot: System Menu`. -1. Usa il d-pad per spostarti su `Boot System Menu` e premi A. Questo avvierà il Menu Wii U con il CFW abilitato. -1. Ora la tua console avvierà automaticamente il CFW ad ogni riavvio della console. -1. Puoi inserire nuovamente qualunque dispositivo USB che avevi inserito prima della guida. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/cbhc/nand-backup.md b/translations/it_IT/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index 34bfedffea5..00000000000 --- a/translations/it_IT/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Fare un Backup della NAND {docsify-ignore} - -In caso qualcosa vada storto nei processi successivi e la tua Wii U si bricka, ripristinare un backup fatto precedentemente può ripararla. - -### Istruzioni {docsify-ignore} - -?> Il peso della NAND della Wii U (dipendendo dal tuo modello) può pesare 8GB o 32GB. Come risultato di questo, per creare un backup completo, la tua SD deve avere più memoria della NAND della tua console. Se non hai una SD grossa abbastanza, puoi saltare la sezione `MLC` che è opzionale, essa include salvataggi e dati di giochi che non sono necessari per recuperare la maggior parte del brick. - -?> Ripristinare il backup della nand sulla Wii U richiede ulteriori abilità di saldatura e esperienza hardware.
Tuttavia, fare un backup della NAND è **sempre** utile, quindi per favore, non saltatelo.
Il tuo Backup della NAND è unico per la tua console. Backup da altre console **NON** funzioneranno. - -1. Naviga attraverso l'Homebrew Launcher e avvia l'app `Wii U NAND Dumper`. -1. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **opzionale** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Premi A per iniziare il processo di dumping. -1. Quando il processo è completo, spegni la tua Wii U, prendi la SD fuori dalla Wii U ed inseriscila nel tuo PC. -1. Per assicurarti di non perdere file, copia i file: `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` e se scegli di usare un backup completo, `ogni file chiamato mlc.bin.part` sul tuo computer. -1. Elimina i file dalla tua SD per liberare spazio. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/cbhc/sd-preparation.md b/translations/it_IT/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 2d2f1fc805a..00000000000 --- a/translations/it_IT/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## Preparazione Della SD {docsify-ignore} - -Ora inseriremo i file CFW richiesti e alcuni altri file homebrew sulla scheda SD. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. Se la tua SD non è formattata in FAT32 usa [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) con 32k (32768) di Unità di allocazione per formattarla. **Non** chiamare la SD come `wiiu` o causerà problemi con homebrew. - -### Cosa Ti Servirà {docsify-ignore} - -- La versione più recente di [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Dovrai installare il file `payload.zip`. -- La versione 1.4 di [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Dovrai installare la versione 1.4 `homebrew_launcher.v1.4.zip` dell' Homebrew Launcher. -- La versione più recente di [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- La versione più recente di [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Dovrai installare il file `homebrew_launcher_channel.v2.1_fix.zip`. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La versione più recente dell'[Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Dovrai installare il file `wiiu-extracttosd.zip`. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- La versione più recente di SaveMii Mod. - -### Istruzioni {docsify-ignore} - -?> **Nota Bene** I file info.json e manifest.install non servono per la modifica e quindi possono essere eliminati. - -1. Inserisci la SD della tua Wii U nel PC. -1. Crea una cartella chiamata `install` nella root della tua SD. -1. Copia i contenuti di `homebrew_launcher_channel.v2.1_fix.zip` nella cartella `install` che hai creato precedentemente. -1. Copia i contenuti del file `haxchi.zip` nella root della tua SD. -1. Copia i contenuti del file `cbhc.zip` nella root della tua SD. -1. Copia i contenuti di `wup_installer_gx2.zip` nella root della tua SD. -1. Copia i contenuti del file `nanddumper.zip` nella root della tua SD. -1. Copia i contenuti del file `wiiu-extracttosd.zip` nella root della tua SD. -1. Copia i contenuti del file `homebrew_launcher.v.1.4.zip` nella root della tua SD. -1. Copia i contenuti del file `savemii_mod.zip` nella root della tua SD. -1. Copia il `payload.elf` dal `payload.zip` nella cartella `wiiu`. ----------- - -### Layout scheda SD {docsify-ignore} - -
-Clicca qui per mostrare il layout finale della scheda SD. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Anche tutte le altre app come disc2app, nanddumper, ecc. dovrebbero essere qui) - ┗ 📜payload.elf -``` - -
diff --git a/translations/it_IT/docs/user-guide/cbhc/sidebar.md b/translations/it_IT/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 08aa4aaeac5..00000000000 --- a/translations/it_IT/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Pagina Iniziale](../introduction) -- [Scegli un CFW](../cfw-choice) -- [Scegli il tuo Gioco DS VC](ds-vc-choice) -- [Preparazione della SD](sd-preparation) -- [Exploit del Browser](browser-exploit) -- [Fare un Backup della NAND](nand-backup) -- [Avviare CFW](launching-cfw) -- [Installare l'Homebrew Channel](installing-hblc) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../donations) -- [Informazioni](../about) \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/cfw-choice.md b/translations/it_IT/docs/user-guide/cfw-choice.md deleted file mode 100644 index 6a137b7de54..00000000000 --- a/translations/it_IT/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Scegli il CFW Che Vuoi ---- -?> Prima di iniziare, assicurati di aver aggiornato la tua Wii U al firmware più recente (5.5.5) se non l'hai già fatto. - -Ci sono due CFW principali: Haxchi/CBHC, e anche Mocha. - -Haxchi e CBHC vengono iniettati in un gioco pagato della Virtual Console del Nintendo DS. Haxchi dovrà essere avviato manualmente dal Menu Wii U, invece CBHC avvierà Haxchi automaticamente mentre il Wii U si avvierà. Mocha è accessibile dal browser con il metodo di Indexiine, quindi è l'unico custom firmware gratuito. - -Il custom firmware che userai sarà una **tua** preferenza. Non c'è nessun CFW giusto o sbagliato con cui continuare, quindi è raccomandato che tu ti sentirai libero di scegliere il tuo CFW, vedendo quale fa al caso tuo! - -## Haxchi - -- Richiede un gioco DS Virtual Console legittimo dall'eShop. -- Può essere avviato direttamente dal menu Wii U. -- Deve essere riavviato dal Menu Wii U ad ogni riavvio per abilitare il CFW. -- La sua funzionalità può essere estesa installando CBHC su un installazione di Haxchi. - -### [**Continua con Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installare CBHC in modo errato può brickare il tuo Wii U! Quindi assicurati di seguire queste regole nell'installazione di CBHC:
- Il gioco DS deve essere installato legittimamente dall'eShop!
- Non Formattare il sistema mentre CBHC è installato!
- Non eliminare l'account che ha comprato il gioco DS per Virtual Console!
- Non reinstallare lo stesso gioco utilizzando WUP Installer o l' eShop!
- Non installare Haxchi sopra CBHC! (Non brickerà, ma causerà un boot-loop! Tieni premuto A durante l'accesso all'Homebrew Launcher per disinstallare CBHC.)
- Non disinstallare il gioco DS Virtual Console senza prima [aver disinstallato correttamente CBHC](uninstall-cbhc)!
- Non spostare il gioco DS Virtual Console su un dispositivo USB! - -!> Infrangere una di queste regole **può** causare un brick! - -> Se sei preoccupato di violare una di queste regole durante l'uso di CBHC, considera l'uso del Filtro Famiglia per il tuo utente! Bloccare l'accesso a `Gestione Dati` e impostare la `Classificazione di gioco` alla valutazione più alta possibile, può aiutarti a prevenire errori che potresti fare quando utilizzi CBHC. Controlla [qui](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) per più informazioni su come cambiare le impostazioni del Filtro Famiglia. - -- Richiede un gioco DS Virtual Console legittimo dall'eShop. -- Avvia direttamente il custom firmware all'avvio. - -### [**Continua con CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Non richiede alcun gioco, ed è quindi gratuito. -- Deve essere riavviato da Indexiine, quindi dall'Homebrew Launcher ad ogni riavvio per abilitare il CFW. -- Non è compatibile con il canale dell'Homebrew Channel. -- Può richiedere una connessione a Internet a seconda di quale entry point si sceglie. - -### [**Continua con Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/it_IT/docs/user-guide/haxchi/browser-exploit.md b/translations/it_IT/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 663e27bb7cf..00000000000 --- a/translations/it_IT/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Exploit Del Browser {docsify-ignore} - -Per installare CFW, dobbiamo prima avviare l'Homebrew Launcher attraverso l'exploit del browser. Assicurati che la tua Wii U sia connessa ad interneto per questo passaggio. - -### Istruzioni {docsify-ignore} - -1. Togli la SD dal tuo computer e mettila nella tua Wii U. -1. Avvia il browser e naviga nel sito `wiiuexploit.xyz`. -1. Premi su `Run Homebrew Launcher!`. La tua console dovrebbe avviare l'Homebrew Launcher. - - Se la tua Wii U rimane bloccata su uno schermo bianco o su un altro schermo, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/haxchi/ds-vc-choice.md b/translations/it_IT/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index 118c915fb23..00000000000 --- a/translations/it_IT/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Scegli il tuo gioco DS VC - -La prima cosa da fare è decidere quale gioco DS Virtual Console (solitamente abbreviato come "VC") comprerai. -Ricorda che il gioco in cui inietterai Haxchi/CBHC non sarà più giocabile fino a quando non disinstallerai Haxchi/CBHC e reinstallerai il gioco dall'eShop. - -### Giochi DS VC Compatibili - -?> Se hai una console Europea, c'è una possibilità che potresti già avere Dr. Kawashima's Brain Training: How Old is Your Brain? gratuitamente. Vai [nell'eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) e controlla se hai il gioco. - -Se non hai nessuno dei giochi Menzionati qui sotto, ti consigliamo di comprare Brain Age (Nord America) o Brain Training (Europa) poiche è il più economico tra tutti questi giochi compatibili, ed è il gioco che probabilmente giocheresti di meno. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/it_IT/docs/user-guide/haxchi/installing-hblc.md b/translations/it_IT/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index 9ffa3b52f1f..00000000000 --- a/translations/it_IT/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installare l'Homebrew Launcher Channel {docsify-ignore} - -Questa pagina ti farà installare l'Homebrew Launcher Channel come applicazione direttamente nel tuo Wii U Menu per un accesso facile. - -### Istruzioni {docsify-ignore} - -?> Installare il canale Dell'Homebrew Launcher è opzionale, poiche puoi già accederci tenendo premuto A mentre apri Haxchi. - -1. Accendi la tua console. -1. Avvia il gioco DS Haxchi dall' Menu Wii U. Questo avvierà nuovamente il Menu Wii U col CFW attivato. -1. Avvia il gioco DS Haxchi di nuovo tenendo premuto A. Questo avvierà l'Homebrew Launcher. -1. Naviga nell'Homebrew Launcher e avvia l'applicazione WUP Installer GX2. -1. Usa lo schermo per selezionare `Homebrew Launcher Channel`. Premi `Install` e conferma con `Sì`. -1. Scegli NAND come destinazione dell'installazione. Questo installerà l'Homebrew Launcher Channel nel Menu Wii U. -1. Una volta che il processo è finito, premi il pulsante Home fino a quando non sei tornato nel Menu Wii U. -1. Ora vedrai il canale dell'Homebrew Launcher installato nel Menu della tua Wii U. Tieni a mente che dovrai avviare il CFW ogni riavvio della console per avviare questo canale. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/haxchi/launching-cfw.md b/translations/it_IT/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index d6258beb56a..00000000000 --- a/translations/it_IT/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Avviare CFW {docsify-ignore} - -Ora che hai il tuo backup della NAND in caso qualcosa andasse storto, puoi avviare il CFW. - -A differenza di altre console come DSi, Wii o 3DS, il CFW della Wii U è temporaneo. Questo significa che appena la tua console viene riavviata, perderai il CFW e dovrai seguire queste istruzioni di nuovo. Questo può venir saltato installando CBHC. - -### Istruzioni {docsify-ignore} - -?> Se l'installazione fallisce per qualche motivo, prova a disinstallare e riinstallare il gioco DS VC dall'eShop e assicurati che sta venendo installato sulla NAND. - -1. Togli la sd dal tuo PC e mettila nella Wii U. -1. Se non l'hai già fatto, installa il gioco DS VC che hai scelto o che avevi. -1. Avvia l'Homebrew Launcher come [spiegato precedentemente](browser-exploit). -1. Naviga nell'Homebrew Launcher e apri l'app Haxchi. -1. Usa il D-Pad per muovere il cursore sul gioco nel quale vuoi installare Haxchi e premi A. -1. Appena l'installazione ha finito, la tua console avvierà il Menu Wii U. Vedrai il tuo gioco rimpiazzato dall'icona di Haxchi. -1. Avvia il gioco modificato. Questo riavvierà la console e abiliterà CFW. -1. Ad ogni riavvio dovrai avviare ogni volta il gioco DS Haxchi per abilitare il CFW. -1. Adesso puoi rimettere qualunque dispositivo USB avevi messo prima di seguire la guida. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/haxchi/nand-backup.md b/translations/it_IT/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 7595d78021f..00000000000 --- a/translations/it_IT/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Fare un Backup della NAND {docsify-ignore} - -In caso qualcosa vada storto nei processi successivi e la tua Wii U si bricka, ripristinare un backup fatto precedentemente può ripararla. - -### Istruzioni {docsify-ignore} - -?> Il peso della NAND della Wii U (dipendendo dal tuo modello) può pesare 8GB o 32GB. Come risultato di questo, per creare un backup completo, la tua SD deve avere più memoria della NAND della tua console. Se non hai una SD grossa abbastanza, puoi saltare la sezione `MLC` che è opzionale, essa include salvataggi e dati di giochi che non sono necessari per recuperare la maggior parte di brick. - -?> Ripristinare il backup della nand sulla Wii U richiede ulteriori abilità di saldatura e esperienza hardware.
Tuttavia, fare un backup della NAND è **sempre** utile, quindi per favore, non saltatelo.
Il tuo Backup della NAND è unico per la tua console. Backup da altre console **NON** funzioneranno. - -1. Naviga attraverso l'Homebrew Launcher e avvia l'app `Wii U NAND Dumper`. -1. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **opzionale** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Premi A per iniziare il processo di dumping. -1. Quando il processo è completo, spegni la tua Wii U, tira fuori la SD fuori dalla Wii U ed inseriscila nel tuo PC. -1. Per assicurarti di non perdere file, copia i file: `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` e se scegli di andare con un backup completo, `ogni file chiamato mlc.bin.part` sul tuo computer. -1. Elimina i file dalla tua SD per liberare spazio. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/haxchi/sd-preparation.md b/translations/it_IT/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 51398c301ff..00000000000 --- a/translations/it_IT/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## Preparazione Della SD {docsify-ignore} - -Ora inseriremo i file del CFW richiesti e alcuni altri file homebrew sulla scheda SD. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. Se la tua SD non è formattata in FAT32 usa [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) con 32k (32768) di Unità di allocazione per formattarla. **Non** chiamare la SD come `wiiu` o causerà problemi con homebrew. - -### Cosa ti servirà {docsify-ignore} - -- La versione più recente dell' [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Dovrai scaricare il file `payload.zip`. -- La versione 1.4 dell' [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Dovrai installare la versione 1.4 di `homebrew_launcher.v1.4.zip`. -- La versione più recente di [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- La versione più recente di [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Dovrai installare il file `homebrew_launcher_channel.v2.1_fix.zip`. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La versione più recente dell' [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Dovrai installare il file `wiiu-extracttosd.zip`. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- La versione più recente di SaveMii Mod. - -### Istruzioni {docsify-ignore} - -?> **Nota Bene** I file info.json e manifest.install non servono per la modifica e quindi possono essere eliminati. - -1. Inserisci la SD della tua Wii U nel PC. -1. Crea una cartella chiamata `install` nella root della tua SD. -1. Copia i contenuti di `homebrew_launcher_channel.v2.1_fix.zip` nella cartella `install` che hai creato precedentemente. -1. Copia i contenuti del file `haxchi.zip` nella root della tua SD. -1. Copia i contenuti di `wup_installer_gx2.zip` nella root della tua SD. -1. Copia i contenuti del file `nanddumper.zip` nella root della tua SD. -1. Copia i contenuti del file `wiiu-extracttosd.zip` nella root della tua SD. -1. Copia i contenuti del file `homebrew_launcher.v.1.4.zip` nella root della tua SD. -1. Copia i contenuti del file `savemii_mod.zip` nella root della tua SD. -1. Copia il `payload.elf` dal `payload.zip` nella cartella `wiiu`. ----------- - -### Layout scheda SD {docsify-ignore} - -
-Clicca qui per mostrare il layout finale della scheda SD. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Anche tutte le altre app come disc2app, nanddumper, ecc. dovrebbero essere qui) - ┗ 📜payload.elf -``` - -
diff --git a/translations/it_IT/docs/user-guide/haxchi/sidebar.md b/translations/it_IT/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 65e9fb09caa..00000000000 --- a/translations/it_IT/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Pagina Iniziale](../introduction) -- [Scegli un CFW](../cfw-choice) -- [Scegli il tuo Gioco DS VC](ds-vc-choice) -- [Preparazione della SD](sd-preparation) -- [Exploit del Browser](browser-exploit) -- [Fare un Backup della NAND](nand-backup) -- [Avviare CFW](launching-cfw) -- [Installare l'Homebrew Channel](installing-hblc) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../donations) -- [Informazioni](../about) \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/introduction.md b/translations/it_IT/docs/user-guide/introduction.md deleted file mode 100644 index b89938a5f8a..00000000000 --- a/translations/it_IT/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Per favore leggi **#faq-wiiu**, così come la pagina [Frequently Asked Questions](faq) per vedere se la tua domanda è già stata risposta. - -> Se apprezzi questa guida, accettiamo [donazioni](donations). - -> Per guide complete riguardanti homebrew e custom firmware per altri dispositivi, visita [hacks.guide](https://hacks.guide). - -### Homebrew - -Le applicazioni homebrew sono software personalizzati, fatti dagli utenti, che non sono autorizzati dalla Nintendo. Questo include, strumenti di modifica del salvataggio, giochi, emulatori, e tanto altro. - -Homebrew può essere avviato sulla tua Wii U purché tu abbia un modo per inserire determinati file su una SD e che la tua Wii U sia aggiornata alla versione più recente per la tua regione. - -### Custom Firmware - -Il Custom Firmware (molto spesso abbreviato come "CFW") abilità hack più avanzati che l'Homebrew Launcher di base non potrebbe fare. Ad esempio, installare un gioco con modifiche con facilità. Il CFW può venir messo in qualunque console nella versione più recente. - -### Homebrew & Utilizzi di CFW - -Tra le altre cose, ti permette di fare le seguenti: - -- Utlizzare "ROM hack" per giochi che possiedi. -- Salvare, modificare e ripristinare salvataggi per molti giochi. -- Giocare giochi per sistemi piu vecchi con diversi emulatori, utilizzando RetroArch o altri emulatori autonomi. -- Giocare titoli fuori dalla tua regione. -- Dumpare dischi di giochi Wii U in un formato che può venir installato su un dispositivo interno o esterno sulla tua Wii U. - - -### Fine - -Questa guida ha l'obiettivo finale di prendere una Wii U completamente non modificata da stock a custom firmware. - -### Prima di iniziare - -!> Prima di iniziare la guida, devi sapere i rischi dell'hacking Wii U: **OGNI** volta che modifichi il sistema, c'è sempre una possibilità di un brick **IRRECUPERABILE**. Sono rari, ma sono sempre una possibilità quindi assicurati di seguire **TUTTE** indicazioni **ESATTAMENTE!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> Per seguire con successo questa guida avrai bisogno di quanto segue: -> -> - Una Scheda Sd. -> - Un dispositivo come un computer per inserire determinati file nella Scheda SD. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -Se tutto va secondo i piani, non perderai nessun dato e rimarrai con tutto quello che avevi prima di iniziare la guida (giochi, salvataggi, NNID, etc verranno conservati). - -Mantieni il dispositivo collegato durante tutto il processo per evitare la perdita di dati o danni da uno spegnimento imprevisto. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -È consigliato che tu legga l'intera guida dall'inizio alla fine una o più volte prima di fare qualsiasi cosa con il tuo sistema. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/it_IT/docs/user-guide/mocha/entrypoint-choice.md b/translations/it_IT/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 053d9857af8..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Scegli un Entrypoint - -## Exploit Online - -- Richiede una connessione internet ogni volta che vuoi avviare l'Homebrew Launcher. - -### [**Continua con l'Exploit Online**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Richiede una connessione Internet per il processo di installazione, ma può essere utilizzato offline una volta che è stato configurato. -- Richiede la modifica di un file di sistema. - -### [**Continua con Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/it_IT/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index 81f8f8879c3..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Exploit del browser {docsify-ignore} - -Per installare CFW, dobbiamo prima avviare l'Homebrew Launcher attraverso l'exploit del browser. Assicurati che il tuo Wii U sia connesso ad internet per questo passaggio. - -### Istruzioni {docsify-ignore} - -1. Togli la SD dal tuo computer e mettila nella tua Wii U. -1. Avvia il browser e naviga sul sito `wiiuexploit.xyz`. -1. Premi su `Run Homebrew Launcher!`. La tua console dovrebbe avviare l'Homebrew Launcher. - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/it_IT/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index 310c21e522f..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Modificazioni al Browser Internet {docsify-ignore} - -Ora che hai il tuo backup della NAND in caso qualcosa andasse storto, puoi installare indexiine sul tuo sistema. - -?> Nel caso in cui non hai rimesso la tua SD dentro la tua Wii U dopo aver copiato il backup della NAND sul tuo computer, fallo ora. - - -### Istruzioni {docsify-ignore} - -1. Accendi la tua Wii U. -1. Avvia il browser e apri il sito `wiiuexploit.xyz`. -1. Premi su `Run Homebrew Launcher!`. La tua console dovrebbe avviare l'Homebrew Launcher. - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo bloccato, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. -1. Naviga attraverso l'Homebrew Launcher e avvia l'app `Indexiine Installer`. -1. Premi A per installare Indexiine. -1. Quando il processo ha finito, chiudi l'Homebrew Launcher per tornare indietro nel tuo Menu Wii U. - -L'Homebrew Launcher verrà ora avviato ogni volta che aprirai il browser internet anche senza una connessione internet. Se vuoi visitare un altro sito, aprilo prima che Indexiine inneschi l'exploit. - -?> Nel caso vuoi disinstallare Indexiine, vai a vedere la pagina [Disinstallare Indexiine](../../uninstall-indexiine) diff --git a/translations/it_IT/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/it_IT/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index d0d653a22f7..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Avviare CFW {docsify-ignore} - -A differenza di altre console tipo DSi, Wii, o 3DS, il CFW della Wii U è temporaneo. Questo significa che appena la tua console viene riavviata, perderai il CFW e dovrai seguire queste istruzioni nuovamente. Questo può venir saltato installando CBHC. - -### Istruzioni {docsify-ignore} - -1. Avvia l'Homebrew Launcher aprendo il Browser. -1. Naviga nell'Homebrew Launcher e apri l'app Mocha CFW. -1. Ti riporterà nell'Homebrew Launcher e abiliterà CFW. -1. Dovrai ri-fare questi passaggi ogni riavvio per avviare CFW. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/it_IT/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index e24ae51ed5f..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Fare un Backup della NAND {docsify-ignore} - -In caso qualcosa vada storto nei processi successivi e la tua Wii U si bricka, ripristinare un backup fatto precedentemente può ripararla. - -### Istruzioni {docsify-ignore} - -?> Il peso della NAND della Wii U (dipendendo dal tuo modello) può pesare 8GB o 32GB. Come risultato di questo, per creare un backup completo, la tua SD deve avere più memoria della NAND della tua console. Se non hai una SD grossa abbastanza, puoi saltare la sezione `MLC` che è opzionale, essa include salvataggi e dati di giochi che non sono necessari per recuperare la maggior parte del brick. - -?> Ripristinare il backup della nand sulla Wii U richiede ulteriori abilità di saldatura e esperienza hardware.
Tuttavia, fare un backup della NAND è **sempre** utile, quindi per favore, non saltatelo.
Il tuo Backup della NAND è unico per la tua console. Backup da altre console **NON** funzioneranno. - -1. Naviga attraverso l'Homebrew Launcher e avvia l'app `Wii U NAND Dumper`. -1. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **opzionale** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Premi A per iniziare il processo di dumping. -1. Quando il processo è completo, spegni la tua Wii U, prendi la SD fuori dalla Wii U ed inseriscila nel tuo PC. -1. Per assicurarti di non perdere file, copia i file: `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` e se scegli di usare un backup completo, `ogni file chiamato mlc.bin.part` sul tuo computer. -1. Elimina i file dalla tua SD per liberare spazio. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/it_IT/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index f54d58b14a5..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## Preparazione Della SD {docsify-ignore} - -Ora inseriremo i file CFW richiesti e alcuni altri file homebrew sulla scheda SD. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. Se la tua SD non è formattata in FAT32 usa [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) con 32k (32768) di Unità di allocazione per formattarla. **Non** chiamare la SD come `wiiu` o causerà problemi con homebrew. - -### Cosa ti servirà {docsify-ignore} - -- Il Mocha config. -- La versione più recente dell' [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Dovrai scaricare il file `payload.zip`. -- La versione 1.4 dell' [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Dovrai installare la versione 1.4 di `homebrew_launcher.v1.4.zip`. -- La versione più recente di [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La versione più recente dell' [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Dovrai installare il file `wiiu-extracttosd.zip`. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- La versione più recente di SaveMii Mod. -- La versione più recente di [Indexiine Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Istruzioni {docsify-ignore} - -?> **Nota Bene** I file info.json e manifest.install non servono per la modifica e quindi possono essere eliminati. - -1. Inserisci la SD della tua Wii U nel PC. -1. Copia i contenuti di `wup_installer_gx2.zip` nella root della tua scheda SD. -1. Copia i contenuti del file `nanddumper.zip` nella root della tua SD. -1. Copia i contenuti del file `wiiu-extracttosd.zip` nella root della tua SD. -1. Copia i contenuti del file `homebrew_launcher.v.1.4.zip` nella root della tua SD. -1. Copia i contenuti di `mocha.zip` nella root della tua SD. -1. Copia i contenuti di `indexiine-installer.zip` nella root della tua SD. -1. Copia i contenuti del file `savemii_mod.zip` nella root della tua SD. -1. Copia il file `config.ini` nella cartella `/wiiu/apps/mocha` nella tua SD. -1. Copia il `payload.elf` dal `payload.zip` nella cartella `wiiu` nella tua SD. ----------- - -### Layout scheda SD {docsify-ignore} - -
-Clicca qui per mostrare il layout finale della scheda SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Anche tutte le altre app come disc2app, nanddumper, ecc. dovrebbero essere qui) - ┗ 📜payload.elf -``` - -
diff --git a/translations/it_IT/docs/user-guide/mocha/indexiine/sidebar.md b/translations/it_IT/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index 72d2a405c39..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Pagina Iniziale](../../introduction) -- [Scegli un CFW](../../cfw-choice) -- [Scegli un Punto di accesso](../entrypoint-choice) -- [Preparazione della SD](sd-preparation) -- [Exploit del Browser](browser-exploit) -- [Fare un Backup della NAND](nand-backup) -- [Modificazioni al Browser](browser-modding) -- [Avviare CFW](launching-cfw) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../../donations) -- [Informazioni](../../about) \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/it_IT/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index fdfa096a916..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Exploit Online - -## Exploit del browser {docsify-ignore} - -Per installare CFW, dobbiamo prima avviare l'Homebrew Launcher attraverso l'exploit del browser. Assicurati che il tuo Wii U sia connesso ad internet per questo passaggio. - -### Istruzioni {docsify-ignore} - -1. Togli la SD dal tuo computer e mettila nella tua Wii U. -1. Avvia il browser e naviga sul sito `wiiuexploit.xyz`. -1. Premi su `Run Homebrew Launcher!`. La tua console dovrebbe avviare l'Homebrew Launcher. - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo bloccato, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/it_IT/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 343d9f26eb7..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Exploit Online - -## Avviare CFW {docsify-ignore} - -Ora che hai il tuo backup della NAND in caso qualcosa andasse storto, puoi avviare CFW. - -A differenza di altre console tipo DSi, Wii, o 3DS, il CFW della Wii U è temporaneo. Questo significa che appena la tua console viene riavviata, perderai il CFW e dovrai seguire queste istruzioni nuovamente. Questo può venir saltato installando CBHC. - -### Istruzioni {docsify-ignore} - -1. Togli la scheda SD dal tuo PC e inseriscila nel Wii U. -1. Avvia l'Homebrew Launcher come [spiegato precedentemente](browser-exploit). -1. Naviga nell'Homebrew Launcher e apri l'app Mocha CFW. -1. Ti riporterà nell'Homebrew Launcher e abiliterà CFW. -1. Dovrai ri-fare questi passaggi ogni riavvio per avviare CFW. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/it_IT/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 5f586298f32..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Exploit Online - -## Fare un Backup della NAND {docsify-ignore} - -In caso qualcosa vada storto nei processi successivi e la tua Wii U si bricka, ripristinare un backup fatto precedentemente può ripararla. - -### Istruzioni {docsify-ignore} - -?> Il peso della NAND della Wii U (dipendendo dal tuo modello) può pesare 8GB o 32GB. Come risultato di questo, per creare un backup completo, la tua SD deve avere più memoria della NAND della tua console. Se non hai una SD grossa abbastanza, puoi saltare la sezione `MLC` che è opzionale, essa include salvataggi e dati di giochi che non sono necessari per recuperare la maggior parte del brick. - -?> Ripristinare il backup della nand sulla Wii U richiede ulteriori abilità di saldatura e esperienza hardware.
Tuttavia, fare un backup della NAND è **sempre** utile, quindi per favore, non saltatelo.
Il tuo Backup della NAND è unico per la tua console. Backup da altre console **NON** funzioneranno. - -1. Naviga attraverso l'Homebrew Launcher e avvia l'app `Wii U NAND Dumper`. -1. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **opzionale** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Premi A per iniziare il processo di dumping. -1. Quando il processo è completo, spegni la tua Wii U, prendi la SD fuori dalla Wii U ed inseriscila nel tuo PC. -1. Per assicurarti di non perdere file, copia i file: `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` e se scegli di usare un backup completo, `ogni file chiamato mlc.bin.part` sul tuo computer. -1. Elimina i file dalla tua SD per liberare spazio. \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/it_IT/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index 33032d0f49c..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Exploit Online - -## Preparazione Della SD {docsify-ignore} - -Ora inseriremo i file CFW richiesti e alcuni altri file homebrew sulla scheda SD. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. Se la tua SD non è formattata in FAT32 usa [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) con 32k (32768) di Unità di allocazione per formattarla. **Non** chiamare la SD come `wiiu` o causerà problemi con homebrew. - -### Cosa ti servirà {docsify-ignore} - -- Il Mocha config. -- La versione più recente dell' [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Dovrai scaricare il file `payload.zip`. -- La versione 1.4 dell' [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Dovrai installare la versione 1.4 di `homebrew_launcher.v1.4.zip`. -- L'ultima versione di [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- La versione più recente dell' [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Dovrai installare il file `wiiu-extracttosd.zip`. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- La versione più recente di SaveMii Mod. - -### Istruzioni {docsify-ignore} - -?> **Nota Bene** I file info.json e manifest.install non servono per la modifica e quindi possono essere eliminati. - -1. Inserisci la SD della tua Wii U nel PC. -1. Copia i contenuti di `wup_installer_gx2.zip` nella root della tua scheda SD. -1. Copia i contenuti del file `nanddumper.zip` nella root della tua SD. -1. Copia i contenuti del file `wiiu-extracttosd.zip` nella root della tua SD. -1. Copia i contenuti del file `homebrew_launcher.v.1.4.zip` nella root della tua SD. -1. Copia i contenuti di `mocha.zip` nella root della tua SD. -1. Copia i contenuti del file `savemii_mod.zip` nella root della tua SD. -1. Copia il file `config.ini` nella cartella `/wiiu/apps/mocha` nella tua SD. -1. Copia il `payload.elf` dal `payload.zip` nella cartella `wiiu` nella tua SD. ----------- - -### Layout scheda SD {docsify-ignore} - -
-Clicca qui per mostrare il layout finale della scheda SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Anche tutte le altre app come disc2app, nanddumper, ecc. dovrebbero essere qui) - ┗ 📜payload.elf -``` - -
diff --git a/translations/it_IT/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/it_IT/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index 4e7f1f658d0..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Exploit Online** -- [Pagina Iniziale](../../introduction) -- [Scegli un CFW](../../cfw-choice) -- [Scegli un Punto di accesso](../entrypoint-choice) -- [Preparazione della SD](sd-preparation) -- [Exploit del Browser](browser-exploit) -- [Fare un Backup della NAND](nand-backup) -- [Avviare CFW](launching-cfw) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../../donations) -- [Informazioni](../../about) \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/mocha/sidebar.md b/translations/it_IT/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 026f1b144fc..00000000000 --- a/translations/it_IT/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Pagina Iniziale](../introduction) -- [Scegli un CFW](../cfw-choice) -- [Scegli un Punto di accesso](entrypoint-choice) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../donations) -- [Informazioni](../about) \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/tiramisu/autoboot.md b/translations/it_IT/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index 8c308ac948d..00000000000 --- a/translations/it_IT/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Avvio automatico di Tiramisu - -Attualmente, ogni volta che vorrai lanciare Tiramisu dovrai lanciare l'app Informazioni per la salute e la sicurezza. Se desideri avviare automaticamente Tiramisu a ogni accensione, è possibile avviare automaticamente l'app Informazioni per la salute e la sicurezza. - -### Istruzioni - -1. Avvia la console per avviare nel menu Wii U, apri l'app Informazioni per la salute e la sicurezza e tieni premuto il pulsante X per aprire il menu Environment Loader. -1. Naviga l'elenco utilizzando il D-Pad e naviga all'ambiente `installer`, premi A per avviarlo. -1. Premi A per selezionare `Check`. -1. Seleziona `Boot options`. -1. Ti verrà chiesto se vuoi cambiare il titolo di avvio. Premi A per selezionare `Switch to PayloadLoader`. -1. Al termine del processo, premi A per spegnere la console. -1. Il PayloadLoader verrà ora avviato automaticamente ad ogni avvio. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Naviga l'elenco utilizzando il D-Pad per selezionare il titolo che vuoi avviare automaticamente, poi premi il pulsante Y per impostarlo come titolo predefinito. - - Premi A per avviare il titolo selezionato. - diff --git a/translations/it_IT/docs/user-guide/tiramisu/browser-exploit.md b/translations/it_IT/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index 8a158d86dcf..00000000000 --- a/translations/it_IT/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Exploit del Browser - -Assicurati che la tua Wii U sia connessa ad interneto per questo passaggio. - -### Istruzioni - -1. Togli la scheda SD dal computer e inseriscila nella console Wii U. -1. Avvia il browser e naviga sul sito `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo bloccato, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/it_IT/docs/user-guide/tiramisu/finalizing-setup.md b/translations/it_IT/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 863b4b8104d..00000000000 --- a/translations/it_IT/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Completamento dell'installazione - -Ora che PayloadLoader, Environment Loader e Tiramisu sono installati, possiamo completare l'installazione. - -Faremo in modo che l'ambiente di Tiramisu si avvii automaticamente quando la console avvierà l'app Informazioni per la salute e la sicurezza (o quando la avvierai manualmente se hai scelto di non avviarlo automaticamente) e selezioneremo il Menu Wii U come predefinito oltre a scaricare applicazioni homebrew aggiuntive. - -### Impostare PayloadLoader, Environment Loader e Tiramisu - -1. Accendi la tua Wii U. - - L'Environment Loader dovrebbe apparire. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. Nel Selettore di Avvio di Tiramisu, il `Menu Wii U` dovrebbe essere già selezionato, premi Y per impostarlo come opzione predefinita di autoavvio, e premi A per avviare il Menu Wii U. - - In futuro, per aprire il Selettore di Avvio di Tiramisu, è necessario tenere premuto START (+) mentre la Wii U si avvia. - -?> Una volta entrato nell'ambiente Tiramisu, puoi aprire il Mii Maker in qualsiasi momento per entrare nell'Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** è un modulo di Tiramisu che ti permette di connettere i controller Bluetooth più popolari in modo wireless. Vedi [questa pagina](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) per maggiori dettagli. -- L'**Homebrew Appstore** ti permette di navigare e scaricare app homebrew direttamente dalla tua Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- Il file `wiiu-extracttosd.zip` di [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/it_IT/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/it_IT/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 388bb090975..00000000000 --- a/translations/it_IT/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installare PayloadLoader - -Ora che hai il tuo backup della NAND nel caso qualcosa andasse storto, puoi installare PayloadLoader sul tuo sistema. - -Installare PayloadLoader ti permetterà di accedere a Tiramisu eseguendo l'app Informazioni per la salute e la sicurezza. - -!> Un reset di fabbrica **non** disinstallerà il PayloadLoader iniettato. Segui [disinstalla PayloadLoader](../../uninstall-payloadloader) per rimuovere il PayloadLoader. - -### Istruzioni - -?> Se hai già eseguito Tiramisu, riavvia la console prima di eseguire nuovamente l'exploit del browser. - -1. Togli la scheda SD dal tuo PC e inseriscila nel Wii U. -1. Esegui l'exploit del browser web come [precedentemente spiegato](browser-exploit) ma questa volta dovrai tenere premuto il pulsante X per aprire il menu Environment Loader. -1. Naviga l'elenco utilizzando il D-Pad e naviga all'ambiente `installer`, premi A per avviarlo. -1. Premi il pulsante A per controllare se è possibile installare il PayloadLoader. - - Dovrebbe ora dirti che il PayloadLoader può essere installato sull'app Informazioni per la salute e la sicurezza. -1. Premi il pulsante A per selezionare `Install / Update`. -1. Ti verrà chiesto se vuoi davvero installare il PayloadLoader. Usa il D-Pad per selezionare `Install` e premi A. -1. Al termine del processo di installazione, premi A per spegnere la console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/it_IT/docs/user-guide/tiramisu/nand-backup.md b/translations/it_IT/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index e3484903e5c..00000000000 --- a/translations/it_IT/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Fare un Backup della NAND - -In caso qualcosa vada storto nei processi successivi e la tua Wii U si bricka, ripristinare un backup fatto precedentemente può ripararla. - -### Istruzioni - -?> Il peso della NAND della Wii U (dipendendo dal tuo modello) può pesare 8GB o 32GB. Come risultato di questo, per creare un backup completo, la tua SD deve avere più memoria della NAND della tua console. Se non hai una SD grossa abbastanza, puoi saltare la sezione `MLC` che è opzionale, essa include salvataggi e dati di giochi che non sono necessari per recuperare la maggior parte di brick. - -?> Ripristinare il backup della nand sulla Wii U richiede ulteriori abilità di saldatura e esperienza hardware.
Tuttavia, fare un backup della NAND è **sempre** utile, quindi per favore, non saltatelo.
Il tuo Backup della NAND è unico per la tua console. Backup da altre console **NON** funzioneranno. - -1. Naviga a `nanddumper` usando il Gamepad e premi A per lanciarlo. -1. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **opzionale** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Premi A per iniziare il processo di dumping. -1. Quando il processo è completo, spegni la tua Wii U, prendi la SD fuori dalla Wii U ed inseriscila nel tuo PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Elimina i file dalla tua SD per liberare spazio. - -?> **Se il PayloadLoader è già installato nell'app Informazioni per la salute e la sicurezza e la tua console lo avvia automaticamente, non è necessario continuare a seguire la guida.** diff --git a/translations/it_IT/docs/user-guide/tiramisu/sd-preparation.md b/translations/it_IT/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 73f9752b172..00000000000 --- a/translations/it_IT/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Preparazione della SD - -Ora inseriremo i file del CFW richiesti e alcuni altri file homebrew sulla scheda SD. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. Se la tua SD non è formattata in FAT32 usa [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) con 32k (32768) di Unità di allocazione per formattarla.
**Non** chiamare la scheda SD `wiiu` o causerà problemi con homebrew. - -?> **Se hai un setup CFW legacy esistente**
Per utenti **CBHC**: vai alla pagina [Disinstalla CBHC](../uninstall-cbhc) per disinstallare CBHC.
Per utenti **Haxchi**: disinstalla l'app Haxchi da Gestione dati nell'app Impostazioni della console.
Per utenti **Mocha CFW (Indexiine)**: vai alla pagina [Disinstalla Indexiine](../uninstall-indexiine) per disintallare Indexiine.
Per utenti **Mocha CFW (Exploit Online)**: non devi fare nulla prima di seguire questa guida. - -### Cosa ti servirà - -- Gli ultimi file da [Tiramisu per il tuo caffè](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Istruzioni - -1. Inserisci la SD della tua Wii U nel PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copia in `/wiiu/environments/tiramisu/modules/setup` sulla tua scheda SD il file `01_sigpatches.rpx`. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### Layout scheda SD {docsify-ignore} - -
-Clicca qui per mostrare il layout finale della scheda SD. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/it_IT/docs/user-guide/tiramisu/sidebar.md b/translations/it_IT/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 6a1be06ba58..00000000000 --- a/translations/it_IT/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Pagina Iniziale](../introduction) -- [Preparazione della SD](sd-preparation) -- [Exploit del Browser](browser-exploit) -- [Fare un Backup della NAND](nand-backup) -- [Installare il PayloadLoader](installing-payloadloader) -- [Avvio automatico di Tiramisu](autobooting) -- [Completamento del setup](finalizing-setup) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../donations) -- [Informazioni](../about) diff --git a/translations/it_IT/docs/user-guide/vwii/browser-exploit.md b/translations/it_IT/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index e989d35c228..00000000000 --- a/translations/it_IT/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Avviare un Exploit ---- -Per installare l'Homebrew Channel, abbiamo prima bisogno di creare un backup della NAND ed essere in grado di lanciare l'Homebrew Launcher attraverso un exploit, come l'exploit del browser. - -Assicurati che la tua Wii U sia connessa ad interneto per questo passaggio. - -### Istruzioni {docsify-ignore} - -1. Avvia un exploit a tua scelta: - - Se non hai mai eseguito homebrew prima, "avviare l'exploit" significa eseguire l'exploit del browser. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - Se il tuo Wii U rimane bloccato su uno schermo bianco o un altro schermo bloccato, aspetta qualche secondo. Se non accade nulla, riavvia la console, [resetta i dati del browser](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) e riprova. - - - Se stai facendo il coldboot in PayloadLoader, "avviare l'exploit" significa avviare la tua console. - - - Se stai eseguendo il PayloadLoader tramite l'applicazione Informazioni & per la salute e la sicurezza, "lanciare l'exploit" significa lanciare l'applicazione Informazioni & per la salute e la sicurezza. - -1. Durante il lancio dell'exploit a tua scelta, tieni premuto il pulsante B (se stai seguendo la sezione `Backup NAND`) o il pulsante X (se stai seguendo la sezione `Installazione dell'Homebrew Channel`). diff --git a/translations/it_IT/docs/user-guide/vwii/finalizing-setup.md b/translations/it_IT/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 8b2f75b3f78..00000000000 --- a/translations/it_IT/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Completamento dell'installazione - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/it_IT/docs/user-guide/vwii/installing-cioses.md b/translations/it_IT/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index 830b72280cc..00000000000 --- a/translations/it_IT/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installazione dei cIOS - -1. Accendi il tuo Wii U e avvia il vWii. -2. Avvia L'Homebrew Channel. -3. Avvia d2x cIOS Installer. -4. Imposta tutto in modo da corrispondere a quanto segue: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Imposta tutto in modo da corrispondere a quanto segue: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Imposta tutto in modo da corrispondere a quanto segue: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/it_IT/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/it_IT/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index 1088238e97e..00000000000 --- a/translations/it_IT/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installazione dell'Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Poi premi il pulsante HOME per tornare al menu Wii U. -4. Avvia la vWii (l'icona del Menu Wii). - - Se l'installazione è riuscita, dovresti vedere l'Homebrew Channel nel tuo Menu Wii. diff --git a/translations/it_IT/docs/user-guide/vwii/nand-backup.md b/translations/it_IT/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index de6e446f91b..00000000000 --- a/translations/it_IT/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Backup della NAND - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Premi A per iniziare il processo di dumping. -4. Quando il processo è completo, spegni la tua Wii U, prendi la SD fuori dalla Wii U ed inseriscila nel tuo PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Elimina i file dalla tua SD per liberare spazio. -7. Togli la scheda SD dal computer e inseriscila nella console Wii U. diff --git a/translations/it_IT/docs/user-guide/vwii/patching-ios80.md b/translations/it_IT/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index cec05a699d3..00000000000 --- a/translations/it_IT/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Avvia Patched IOS 80 Installer for vWii. -2. Leggi la schermata di avviso e aspetta 30 secondi. -3. Premi qualsiasi tasto per installarlo. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/it_IT/docs/user-guide/vwii/sd-preparation.md b/translations/it_IT/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index fd6455d50a2..00000000000 --- a/translations/it_IT/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -Questa pagina ti guiderà nel processo di modding del tuo vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### Cosa ti servirà - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Istruzioni - -1. Inserisci la SD della tua Wii U nel PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Togli la scheda SD dal computer e inseriscila nella console Wii U. diff --git a/translations/it_IT/docs/user-guide/vwii/sidebar.md b/translations/it_IT/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index 8752ff2b6da..00000000000 --- a/translations/it_IT/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**Modding vWii** -- [Pagina Iniziale](../introduction) -- [Modding vWii](vwii-modding) -- **Collegamenti** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Traduci](https://icongr.am/material/translate.svg?color=808080&size=16)Traduci](https://hacks-guide.crowdin.com/u/projects/10) -- [Dona](../donations) -- [Informazioni](../about) diff --git a/translations/it_IT/docs/user-guide/vwii/vwii-modding.md b/translations/it_IT/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/it_IT/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/it_IT/docs/vwii/vwii-modding.md b/translations/it_IT/docs/vwii/vwii-modding.md deleted file mode 100644 index e265d530b01..00000000000 --- a/translations/it_IT/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# Guida sul modding vWii ---- -Questa pagina ti guiderà nel processo di modding del tuo vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Nota Bene** La tua SD dovrà essere formattata in FAT32. Se la tua SD non è formattata in FAT32 usa [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) con 32k (32768) di Unità di allocazione per formattarla. **Non** chiamare la SD come `wiiu` o causerà problemi con homebrew. - -?> Se hai già modificato la tua Wii U in passato, puoi usare la stessa scheda SD per questo processo. - - - -### Cosa ti servirà {docsify-ignore} - -- Gli ultimi file da [Tiramisu per il tuo caffè](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- La versione più recente del [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Inserisci la SD del tuo Wii U nel PC. -1. Copia la cartella `apps` dalla cartella Patched_IOS80_Installer_for_vWii.zip file nella radice della scheda SD. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copia nella root della tua scheda SD il contenuto del file *`.zip`* di Tiramisu appena scaricato. -1. Copia il file `compat_installer.elf` nella cartella `wiiu/apps` nel root della tua scheda SD. -1. Togli la scheda SD dal computer e inseriscila nella console Wii U. - -### Backup della NAND - -Nel caso qualcosa andasse storto durante il processo e la tua vWii si bricka, ripristinare un backup della NAND fatto in precedenza farà ritornare tutto come prima. - -?> Se recentemente hai fatto un backup della NAND che contiene SLCCMPT e OTP, sentiti libero di saltare questo passaggio. - -1. Avvia il [Wii U NAND Dumper](vwii/browser-exploit). -1. Usa il D-Pad del GamePad per inserire la seguente configurazione: - - Dump SLC: **opzionale** - - Dump SLCCMPT: **yes** - - Dump MLC: **opzionale** - - Dump OTP: **yes** - - Dump SEEPROM: **opzionale** -1. Premi A per iniziare il processo di dumping. -1. Quando il processo è completo, spegni la tua Wii U, prendi la SD fuori dalla Wii U ed inseriscila nel tuo PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Elimina i file dalla tua SD per liberare spazio. -1. Togli la scheda SD dal computer e inseriscila nella console Wii U. - -### Installazione dell'Homebrew Channel - -1. Avvia in [Tiramisu](vwii/browser-exploit). -1. Avvia l'Homebrew Launcher, aprendo il Centro di creazione Mii. -1. Avvia il compat_installer. -1. Premi `A` per installare l'Homebrew Channel e attendi fino a che non vedi `Install succeeded`. Poi premi il pulsante HOME per tornare al menu Wii U. -1. Avvia la vWii (l'icona del Menu Wii). - - Se l'installazione è riuscita, dovresti vedere l'Homebrew Channel nel tuo Menu Wii. - -### Installazione dei cIOS - -!> Assicurati di non avere dei file `.wad` altrove che nella cartella `apps` sulla tua scheda SD. - -1. Accendi il tuo Wii U e avvia il vWii. -1. Avvia L'Homebrew Channel. -1. Avvia d2x cIOS Installer. -1. Imposta tutto in modo da corrispondere a quanto segue: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Premi `A` per installare. -1. Imposta tutto in modo da corrispondere a quanto segue: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Premi `A` per installare. -1. Imposta tutto in modo da corrispondere a quanto segue: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Premi `A` per installare. -1. Premi `B` per uscire. - -### Patchare l'IOS 80 - -!> Se per qualche modo, il tuo Wii U viene spento mentre patchi IOS 80, il tuo vWii verrà brickato. Questo può essere riparato estraendo IOS 80 dal tuo precedentemente fatto backup della NAND e poi scambiandolo con un FTP oppure [reinstallando IOS 80](recover-vwii-ioses-channels). - -1. Avvia Patched IOS 80 Installer for vWii. -1. Leggi la schermata di avviso e aspetta 30 secondi. -1. Premi qualsiasi tasto per installarlo. -1. Aspetta finchè dice IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installando un Menu di Sistema personalizzato è un brick definitivo quindi dovresti sempre avere un backup prima di installare un Menu di Sistema ma quando fatto bene, non brickerà il vWii. - -!> Installando un IOS (includendo le IOS TED) o wad fatti per il Wii originale nella tua vWii ti brickerà il vWii. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ja_JP/docs/extras/about.md b/translations/ja_JP/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/ja_JP/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/ja_JP/docs/extras/block-updates.md b/translations/ja_JP/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/ja_JP/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/ja_JP/docs/extras/configurable-payload.md b/translations/ja_JP/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/ja_JP/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/ja_JP/docs/extras/donations.md b/translations/ja_JP/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/ja_JP/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/ja_JP/docs/extras/dump-games.md b/translations/ja_JP/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/ja_JP/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/ja_JP/docs/extras/dump-wii-games.md b/translations/ja_JP/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/ja_JP/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/ja_JP/docs/extras/faq.md b/translations/ja_JP/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/ja_JP/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/ja_JP/docs/extras/find-wiiu-ip-address.md b/translations/ja_JP/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/ja_JP/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/ja_JP/docs/extras/unblock-updates.md b/translations/ja_JP/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/ja_JP/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/ja_JP/docs/extras/uninstall-cbhc.md b/translations/ja_JP/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/ja_JP/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/ja_JP/docs/extras/uninstall-indexiine.md b/translations/ja_JP/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/ja_JP/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/ja_JP/docs/extras/uninstall-payloadloader.md b/translations/ja_JP/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/ja_JP/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/ja_JP/docs/privacy/privacy-policy.md b/translations/ja_JP/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/ja_JP/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/ja_JP/docs/sidebar.md b/translations/ja_JP/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/ja_JP/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/ja_JP/docs/troubleshooting/common-issues-fixes.md b/translations/ja_JP/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/ja_JP/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/ja_JP/docs/troubleshooting/fix-errcode-112-1037.md b/translations/ja_JP/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/ja_JP/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/ja_JP/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/ja_JP/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/ja_JP/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/ja_JP/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/ja_JP/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/ja_JP/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ja_JP/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/ja_JP/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/ja_JP/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/cbhc/nand-backup.md b/translations/ja_JP/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/ja_JP/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ja_JP/docs/user-guide/archive/cbhc/sidebar.md b/translations/ja_JP/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/cfw-choice.md b/translations/ja_JP/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ja_JP/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/ja_JP/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/ja_JP/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ja_JP/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/ja_JP/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/ja_JP/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/haxchi/nand-backup.md b/translations/ja_JP/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/ja_JP/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ja_JP/docs/user-guide/archive/haxchi/sidebar.md b/translations/ja_JP/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/ja_JP/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/mocha/sidebar.md b/translations/ja_JP/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/sidebar.md b/translations/ja_JP/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/ja_JP/docs/user-guide/archive/tiramisu/autoboot.md b/translations/ja_JP/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ja_JP/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/ja_JP/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ja_JP/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/ja_JP/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/ja_JP/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/ja_JP/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/ja_JP/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ja_JP/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/ja_JP/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ja_JP/docs/user-guide/archive/tiramisu/sidebar.md b/translations/ja_JP/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ja_JP/docs/user-guide/archive/vwii/browser-exploit.md b/translations/ja_JP/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ja_JP/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/ja_JP/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ja_JP/docs/user-guide/archive/vwii/installing-cioses.md b/translations/ja_JP/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ja_JP/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/ja_JP/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ja_JP/docs/user-guide/archive/vwii/nand-backup.md b/translations/ja_JP/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ja_JP/docs/user-guide/archive/vwii/patching-ios80.md b/translations/ja_JP/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ja_JP/docs/user-guide/archive/vwii/sd-preparation.md b/translations/ja_JP/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ja_JP/docs/user-guide/archive/vwii/sidebar.md b/translations/ja_JP/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/ja_JP/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ja_JP/docs/user-guide/aroma/autoboot.md b/translations/ja_JP/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/ja_JP/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/ja_JP/docs/user-guide/aroma/browser-exploit.md b/translations/ja_JP/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/ja_JP/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/ja_JP/docs/user-guide/aroma/finalizing-setup.md b/translations/ja_JP/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/ja_JP/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/ja_JP/docs/user-guide/aroma/getting-started.md b/translations/ja_JP/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/ja_JP/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/ja_JP/docs/user-guide/aroma/installing-payloadloader.md b/translations/ja_JP/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/ja_JP/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/ja_JP/docs/user-guide/aroma/nand-backup.md b/translations/ja_JP/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/ja_JP/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/ja_JP/docs/user-guide/aroma/sd-preparation.md b/translations/ja_JP/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/ja_JP/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/ja_JP/docs/user-guide/aroma/sidebar.md b/translations/ja_JP/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/ja_JP/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ja_JP/docs/user-guide/cbhc/browser-exploit.md b/translations/ja_JP/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/ja_JP/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/cbhc/ds-vc-choice.md b/translations/ja_JP/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/ja_JP/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ja_JP/docs/user-guide/cbhc/installing-hblc.md b/translations/ja_JP/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/ja_JP/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/cbhc/launching-cfw.md b/translations/ja_JP/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/ja_JP/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/cbhc/nand-backup.md b/translations/ja_JP/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/ja_JP/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/cbhc/sd-preparation.md b/translations/ja_JP/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/ja_JP/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ja_JP/docs/user-guide/cbhc/sidebar.md b/translations/ja_JP/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/ja_JP/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/cfw-choice.md b/translations/ja_JP/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/ja_JP/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ja_JP/docs/user-guide/haxchi/browser-exploit.md b/translations/ja_JP/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/ja_JP/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/haxchi/ds-vc-choice.md b/translations/ja_JP/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/ja_JP/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ja_JP/docs/user-guide/haxchi/installing-hblc.md b/translations/ja_JP/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/ja_JP/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/haxchi/launching-cfw.md b/translations/ja_JP/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/ja_JP/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/haxchi/nand-backup.md b/translations/ja_JP/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/ja_JP/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/haxchi/sd-preparation.md b/translations/ja_JP/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/ja_JP/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ja_JP/docs/user-guide/haxchi/sidebar.md b/translations/ja_JP/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/ja_JP/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/introduction.md b/translations/ja_JP/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/ja_JP/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/ja_JP/docs/user-guide/mocha/entrypoint-choice.md b/translations/ja_JP/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/ja_JP/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/ja_JP/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/ja_JP/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/ja_JP/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/ja_JP/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/ja_JP/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ja_JP/docs/user-guide/mocha/indexiine/sidebar.md b/translations/ja_JP/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/ja_JP/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/ja_JP/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/ja_JP/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/ja_JP/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ja_JP/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/ja_JP/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/mocha/sidebar.md b/translations/ja_JP/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/ja_JP/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/tiramisu/autoboot.md b/translations/ja_JP/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/ja_JP/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ja_JP/docs/user-guide/tiramisu/browser-exploit.md b/translations/ja_JP/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ja_JP/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ja_JP/docs/user-guide/tiramisu/finalizing-setup.md b/translations/ja_JP/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/ja_JP/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/ja_JP/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/ja_JP/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ja_JP/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ja_JP/docs/user-guide/tiramisu/nand-backup.md b/translations/ja_JP/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/ja_JP/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ja_JP/docs/user-guide/tiramisu/sd-preparation.md b/translations/ja_JP/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/ja_JP/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ja_JP/docs/user-guide/tiramisu/sidebar.md b/translations/ja_JP/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/ja_JP/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ja_JP/docs/user-guide/vwii/browser-exploit.md b/translations/ja_JP/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ja_JP/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ja_JP/docs/user-guide/vwii/finalizing-setup.md b/translations/ja_JP/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ja_JP/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ja_JP/docs/user-guide/vwii/installing-cioses.md b/translations/ja_JP/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ja_JP/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ja_JP/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/ja_JP/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ja_JP/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ja_JP/docs/user-guide/vwii/nand-backup.md b/translations/ja_JP/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ja_JP/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ja_JP/docs/user-guide/vwii/patching-ios80.md b/translations/ja_JP/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ja_JP/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ja_JP/docs/user-guide/vwii/sd-preparation.md b/translations/ja_JP/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ja_JP/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ja_JP/docs/user-guide/vwii/sidebar.md b/translations/ja_JP/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/ja_JP/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ja_JP/docs/user-guide/vwii/vwii-modding.md b/translations/ja_JP/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/ja_JP/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/ja_JP/docs/vwii/vwii-modding.md b/translations/ja_JP/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/ja_JP/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ko_KR/docs/extras/about.md b/translations/ko_KR/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/ko_KR/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/ko_KR/docs/extras/block-updates.md b/translations/ko_KR/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/ko_KR/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/ko_KR/docs/extras/configurable-payload.md b/translations/ko_KR/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/ko_KR/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/ko_KR/docs/extras/donations.md b/translations/ko_KR/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/ko_KR/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/ko_KR/docs/extras/dump-games.md b/translations/ko_KR/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/ko_KR/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/ko_KR/docs/extras/dump-wii-games.md b/translations/ko_KR/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/ko_KR/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/ko_KR/docs/extras/faq.md b/translations/ko_KR/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/ko_KR/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/ko_KR/docs/extras/find-wiiu-ip-address.md b/translations/ko_KR/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/ko_KR/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/ko_KR/docs/extras/unblock-updates.md b/translations/ko_KR/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/ko_KR/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/ko_KR/docs/extras/uninstall-cbhc.md b/translations/ko_KR/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/ko_KR/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/ko_KR/docs/extras/uninstall-indexiine.md b/translations/ko_KR/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/ko_KR/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/ko_KR/docs/extras/uninstall-payloadloader.md b/translations/ko_KR/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/ko_KR/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/ko_KR/docs/privacy/privacy-policy.md b/translations/ko_KR/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/ko_KR/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/ko_KR/docs/sidebar.md b/translations/ko_KR/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/ko_KR/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/ko_KR/docs/troubleshooting/common-issues-fixes.md b/translations/ko_KR/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/ko_KR/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/ko_KR/docs/troubleshooting/fix-errcode-112-1037.md b/translations/ko_KR/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/ko_KR/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/ko_KR/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/ko_KR/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/ko_KR/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/ko_KR/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/ko_KR/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/ko_KR/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ko_KR/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/ko_KR/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/ko_KR/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/cbhc/nand-backup.md b/translations/ko_KR/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/ko_KR/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ko_KR/docs/user-guide/archive/cbhc/sidebar.md b/translations/ko_KR/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/cfw-choice.md b/translations/ko_KR/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ko_KR/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/ko_KR/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/ko_KR/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ko_KR/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/ko_KR/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/ko_KR/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/haxchi/nand-backup.md b/translations/ko_KR/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/ko_KR/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ko_KR/docs/user-guide/archive/haxchi/sidebar.md b/translations/ko_KR/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/ko_KR/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/mocha/sidebar.md b/translations/ko_KR/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/sidebar.md b/translations/ko_KR/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/ko_KR/docs/user-guide/archive/tiramisu/autoboot.md b/translations/ko_KR/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ko_KR/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/ko_KR/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ko_KR/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/ko_KR/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/ko_KR/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/ko_KR/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/ko_KR/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ko_KR/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/ko_KR/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ko_KR/docs/user-guide/archive/tiramisu/sidebar.md b/translations/ko_KR/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ko_KR/docs/user-guide/archive/vwii/browser-exploit.md b/translations/ko_KR/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ko_KR/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/ko_KR/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ko_KR/docs/user-guide/archive/vwii/installing-cioses.md b/translations/ko_KR/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ko_KR/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/ko_KR/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ko_KR/docs/user-guide/archive/vwii/nand-backup.md b/translations/ko_KR/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ko_KR/docs/user-guide/archive/vwii/patching-ios80.md b/translations/ko_KR/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ko_KR/docs/user-guide/archive/vwii/sd-preparation.md b/translations/ko_KR/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ko_KR/docs/user-guide/archive/vwii/sidebar.md b/translations/ko_KR/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/ko_KR/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ko_KR/docs/user-guide/aroma/autoboot.md b/translations/ko_KR/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/ko_KR/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/ko_KR/docs/user-guide/aroma/browser-exploit.md b/translations/ko_KR/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/ko_KR/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/ko_KR/docs/user-guide/aroma/finalizing-setup.md b/translations/ko_KR/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/ko_KR/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/ko_KR/docs/user-guide/aroma/getting-started.md b/translations/ko_KR/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/ko_KR/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/ko_KR/docs/user-guide/aroma/installing-payloadloader.md b/translations/ko_KR/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/ko_KR/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/ko_KR/docs/user-guide/aroma/nand-backup.md b/translations/ko_KR/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/ko_KR/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/ko_KR/docs/user-guide/aroma/sd-preparation.md b/translations/ko_KR/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/ko_KR/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/ko_KR/docs/user-guide/aroma/sidebar.md b/translations/ko_KR/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/ko_KR/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ko_KR/docs/user-guide/cbhc/browser-exploit.md b/translations/ko_KR/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/ko_KR/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/cbhc/ds-vc-choice.md b/translations/ko_KR/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/ko_KR/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ko_KR/docs/user-guide/cbhc/installing-hblc.md b/translations/ko_KR/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/ko_KR/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/cbhc/launching-cfw.md b/translations/ko_KR/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/ko_KR/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/cbhc/nand-backup.md b/translations/ko_KR/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/ko_KR/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/cbhc/sd-preparation.md b/translations/ko_KR/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/ko_KR/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ko_KR/docs/user-guide/cbhc/sidebar.md b/translations/ko_KR/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/ko_KR/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/cfw-choice.md b/translations/ko_KR/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/ko_KR/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ko_KR/docs/user-guide/haxchi/browser-exploit.md b/translations/ko_KR/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/ko_KR/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/haxchi/ds-vc-choice.md b/translations/ko_KR/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/ko_KR/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ko_KR/docs/user-guide/haxchi/installing-hblc.md b/translations/ko_KR/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/ko_KR/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/haxchi/launching-cfw.md b/translations/ko_KR/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/ko_KR/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/haxchi/nand-backup.md b/translations/ko_KR/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/ko_KR/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/haxchi/sd-preparation.md b/translations/ko_KR/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/ko_KR/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ko_KR/docs/user-guide/haxchi/sidebar.md b/translations/ko_KR/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/ko_KR/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/introduction.md b/translations/ko_KR/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/ko_KR/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/ko_KR/docs/user-guide/mocha/entrypoint-choice.md b/translations/ko_KR/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/ko_KR/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/ko_KR/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/ko_KR/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/ko_KR/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/ko_KR/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/ko_KR/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ko_KR/docs/user-guide/mocha/indexiine/sidebar.md b/translations/ko_KR/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/ko_KR/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/ko_KR/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/ko_KR/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/ko_KR/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ko_KR/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/ko_KR/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/mocha/sidebar.md b/translations/ko_KR/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/ko_KR/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/tiramisu/autoboot.md b/translations/ko_KR/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/ko_KR/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ko_KR/docs/user-guide/tiramisu/browser-exploit.md b/translations/ko_KR/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ko_KR/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ko_KR/docs/user-guide/tiramisu/finalizing-setup.md b/translations/ko_KR/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/ko_KR/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/ko_KR/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/ko_KR/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ko_KR/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ko_KR/docs/user-guide/tiramisu/nand-backup.md b/translations/ko_KR/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/ko_KR/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ko_KR/docs/user-guide/tiramisu/sd-preparation.md b/translations/ko_KR/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/ko_KR/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ko_KR/docs/user-guide/tiramisu/sidebar.md b/translations/ko_KR/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/ko_KR/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ko_KR/docs/user-guide/vwii/browser-exploit.md b/translations/ko_KR/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ko_KR/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ko_KR/docs/user-guide/vwii/finalizing-setup.md b/translations/ko_KR/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ko_KR/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ko_KR/docs/user-guide/vwii/installing-cioses.md b/translations/ko_KR/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ko_KR/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ko_KR/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/ko_KR/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ko_KR/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ko_KR/docs/user-guide/vwii/nand-backup.md b/translations/ko_KR/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ko_KR/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ko_KR/docs/user-guide/vwii/patching-ios80.md b/translations/ko_KR/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ko_KR/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ko_KR/docs/user-guide/vwii/sd-preparation.md b/translations/ko_KR/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ko_KR/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ko_KR/docs/user-guide/vwii/sidebar.md b/translations/ko_KR/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/ko_KR/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ko_KR/docs/user-guide/vwii/vwii-modding.md b/translations/ko_KR/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/ko_KR/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/ko_KR/docs/vwii/vwii-modding.md b/translations/ko_KR/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/ko_KR/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ms_MY/docs/extras/about.md b/translations/ms_MY/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/ms_MY/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/ms_MY/docs/extras/block-updates.md b/translations/ms_MY/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/ms_MY/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/ms_MY/docs/extras/configurable-payload.md b/translations/ms_MY/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/ms_MY/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/ms_MY/docs/extras/donations.md b/translations/ms_MY/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/ms_MY/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/ms_MY/docs/extras/dump-games.md b/translations/ms_MY/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/ms_MY/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/ms_MY/docs/extras/dump-wii-games.md b/translations/ms_MY/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/ms_MY/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/ms_MY/docs/extras/faq.md b/translations/ms_MY/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/ms_MY/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/ms_MY/docs/extras/find-wiiu-ip-address.md b/translations/ms_MY/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/ms_MY/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/ms_MY/docs/extras/unblock-updates.md b/translations/ms_MY/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/ms_MY/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/ms_MY/docs/extras/uninstall-cbhc.md b/translations/ms_MY/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/ms_MY/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/ms_MY/docs/extras/uninstall-indexiine.md b/translations/ms_MY/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/ms_MY/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/ms_MY/docs/extras/uninstall-payloadloader.md b/translations/ms_MY/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/ms_MY/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/ms_MY/docs/privacy/privacy-policy.md b/translations/ms_MY/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/ms_MY/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/ms_MY/docs/sidebar.md b/translations/ms_MY/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/ms_MY/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/ms_MY/docs/troubleshooting/common-issues-fixes.md b/translations/ms_MY/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/ms_MY/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/ms_MY/docs/troubleshooting/fix-errcode-112-1037.md b/translations/ms_MY/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/ms_MY/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/ms_MY/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/ms_MY/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/ms_MY/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/ms_MY/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/ms_MY/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/ms_MY/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ms_MY/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/ms_MY/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/ms_MY/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/cbhc/nand-backup.md b/translations/ms_MY/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/ms_MY/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ms_MY/docs/user-guide/archive/cbhc/sidebar.md b/translations/ms_MY/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/cfw-choice.md b/translations/ms_MY/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ms_MY/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/ms_MY/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/ms_MY/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ms_MY/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/ms_MY/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/ms_MY/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/haxchi/nand-backup.md b/translations/ms_MY/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/ms_MY/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ms_MY/docs/user-guide/archive/haxchi/sidebar.md b/translations/ms_MY/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/ms_MY/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/mocha/sidebar.md b/translations/ms_MY/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/sidebar.md b/translations/ms_MY/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/ms_MY/docs/user-guide/archive/tiramisu/autoboot.md b/translations/ms_MY/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ms_MY/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/ms_MY/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ms_MY/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/ms_MY/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/ms_MY/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/ms_MY/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/ms_MY/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ms_MY/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/ms_MY/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ms_MY/docs/user-guide/archive/tiramisu/sidebar.md b/translations/ms_MY/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ms_MY/docs/user-guide/archive/vwii/browser-exploit.md b/translations/ms_MY/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ms_MY/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/ms_MY/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ms_MY/docs/user-guide/archive/vwii/installing-cioses.md b/translations/ms_MY/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ms_MY/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/ms_MY/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ms_MY/docs/user-guide/archive/vwii/nand-backup.md b/translations/ms_MY/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ms_MY/docs/user-guide/archive/vwii/patching-ios80.md b/translations/ms_MY/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ms_MY/docs/user-guide/archive/vwii/sd-preparation.md b/translations/ms_MY/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ms_MY/docs/user-guide/archive/vwii/sidebar.md b/translations/ms_MY/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/ms_MY/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ms_MY/docs/user-guide/aroma/autoboot.md b/translations/ms_MY/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/ms_MY/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/ms_MY/docs/user-guide/aroma/browser-exploit.md b/translations/ms_MY/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/ms_MY/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/ms_MY/docs/user-guide/aroma/finalizing-setup.md b/translations/ms_MY/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/ms_MY/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/ms_MY/docs/user-guide/aroma/getting-started.md b/translations/ms_MY/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/ms_MY/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/ms_MY/docs/user-guide/aroma/installing-payloadloader.md b/translations/ms_MY/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/ms_MY/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/ms_MY/docs/user-guide/aroma/nand-backup.md b/translations/ms_MY/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/ms_MY/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/ms_MY/docs/user-guide/aroma/sd-preparation.md b/translations/ms_MY/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/ms_MY/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/ms_MY/docs/user-guide/aroma/sidebar.md b/translations/ms_MY/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/ms_MY/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ms_MY/docs/user-guide/cbhc/browser-exploit.md b/translations/ms_MY/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/ms_MY/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/cbhc/ds-vc-choice.md b/translations/ms_MY/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/ms_MY/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ms_MY/docs/user-guide/cbhc/installing-hblc.md b/translations/ms_MY/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/ms_MY/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/cbhc/launching-cfw.md b/translations/ms_MY/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/ms_MY/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/cbhc/nand-backup.md b/translations/ms_MY/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/ms_MY/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/cbhc/sd-preparation.md b/translations/ms_MY/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/ms_MY/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ms_MY/docs/user-guide/cbhc/sidebar.md b/translations/ms_MY/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/ms_MY/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/cfw-choice.md b/translations/ms_MY/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/ms_MY/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ms_MY/docs/user-guide/haxchi/browser-exploit.md b/translations/ms_MY/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/ms_MY/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/haxchi/ds-vc-choice.md b/translations/ms_MY/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/ms_MY/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ms_MY/docs/user-guide/haxchi/installing-hblc.md b/translations/ms_MY/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/ms_MY/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/haxchi/launching-cfw.md b/translations/ms_MY/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/ms_MY/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/haxchi/nand-backup.md b/translations/ms_MY/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/ms_MY/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/haxchi/sd-preparation.md b/translations/ms_MY/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/ms_MY/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ms_MY/docs/user-guide/haxchi/sidebar.md b/translations/ms_MY/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/ms_MY/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/introduction.md b/translations/ms_MY/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/ms_MY/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/ms_MY/docs/user-guide/mocha/entrypoint-choice.md b/translations/ms_MY/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/ms_MY/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/ms_MY/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/ms_MY/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/ms_MY/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/ms_MY/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/ms_MY/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ms_MY/docs/user-guide/mocha/indexiine/sidebar.md b/translations/ms_MY/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/ms_MY/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/ms_MY/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/ms_MY/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/ms_MY/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ms_MY/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/ms_MY/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/mocha/sidebar.md b/translations/ms_MY/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/ms_MY/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/tiramisu/autoboot.md b/translations/ms_MY/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/ms_MY/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ms_MY/docs/user-guide/tiramisu/browser-exploit.md b/translations/ms_MY/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ms_MY/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ms_MY/docs/user-guide/tiramisu/finalizing-setup.md b/translations/ms_MY/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/ms_MY/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/ms_MY/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/ms_MY/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ms_MY/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ms_MY/docs/user-guide/tiramisu/nand-backup.md b/translations/ms_MY/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/ms_MY/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ms_MY/docs/user-guide/tiramisu/sd-preparation.md b/translations/ms_MY/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/ms_MY/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ms_MY/docs/user-guide/tiramisu/sidebar.md b/translations/ms_MY/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/ms_MY/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ms_MY/docs/user-guide/vwii/browser-exploit.md b/translations/ms_MY/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ms_MY/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ms_MY/docs/user-guide/vwii/finalizing-setup.md b/translations/ms_MY/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ms_MY/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ms_MY/docs/user-guide/vwii/installing-cioses.md b/translations/ms_MY/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ms_MY/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ms_MY/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/ms_MY/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ms_MY/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ms_MY/docs/user-guide/vwii/nand-backup.md b/translations/ms_MY/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ms_MY/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ms_MY/docs/user-guide/vwii/patching-ios80.md b/translations/ms_MY/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ms_MY/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ms_MY/docs/user-guide/vwii/sd-preparation.md b/translations/ms_MY/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ms_MY/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ms_MY/docs/user-guide/vwii/sidebar.md b/translations/ms_MY/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/ms_MY/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ms_MY/docs/user-guide/vwii/vwii-modding.md b/translations/ms_MY/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/ms_MY/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/ms_MY/docs/vwii/vwii-modding.md b/translations/ms_MY/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/ms_MY/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/nl_NL/docs/extras/about.md b/translations/nl_NL/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/nl_NL/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/nl_NL/docs/extras/block-updates.md b/translations/nl_NL/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/nl_NL/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/nl_NL/docs/extras/configurable-payload.md b/translations/nl_NL/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/nl_NL/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/nl_NL/docs/extras/donations.md b/translations/nl_NL/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/nl_NL/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/nl_NL/docs/extras/dump-games.md b/translations/nl_NL/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/nl_NL/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/nl_NL/docs/extras/dump-wii-games.md b/translations/nl_NL/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/nl_NL/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/nl_NL/docs/extras/faq.md b/translations/nl_NL/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/nl_NL/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/nl_NL/docs/extras/find-wiiu-ip-address.md b/translations/nl_NL/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/nl_NL/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/nl_NL/docs/extras/unblock-updates.md b/translations/nl_NL/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/nl_NL/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/nl_NL/docs/extras/uninstall-cbhc.md b/translations/nl_NL/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/nl_NL/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/nl_NL/docs/extras/uninstall-indexiine.md b/translations/nl_NL/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/nl_NL/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/nl_NL/docs/extras/uninstall-payloadloader.md b/translations/nl_NL/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/nl_NL/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/nl_NL/docs/privacy/privacy-policy.md b/translations/nl_NL/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/nl_NL/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/nl_NL/docs/sidebar.md b/translations/nl_NL/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/nl_NL/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/nl_NL/docs/troubleshooting/common-issues-fixes.md b/translations/nl_NL/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/nl_NL/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/nl_NL/docs/troubleshooting/fix-errcode-112-1037.md b/translations/nl_NL/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/nl_NL/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/nl_NL/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/nl_NL/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/nl_NL/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/nl_NL/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/nl_NL/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/nl_NL/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/nl_NL/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/nl_NL/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/nl_NL/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/cbhc/nand-backup.md b/translations/nl_NL/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/nl_NL/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/nl_NL/docs/user-guide/archive/cbhc/sidebar.md b/translations/nl_NL/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/cfw-choice.md b/translations/nl_NL/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/nl_NL/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/nl_NL/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/nl_NL/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/nl_NL/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/nl_NL/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/nl_NL/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/haxchi/nand-backup.md b/translations/nl_NL/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/nl_NL/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/nl_NL/docs/user-guide/archive/haxchi/sidebar.md b/translations/nl_NL/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/nl_NL/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/mocha/sidebar.md b/translations/nl_NL/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/sidebar.md b/translations/nl_NL/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/nl_NL/docs/user-guide/archive/tiramisu/autoboot.md b/translations/nl_NL/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/nl_NL/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/nl_NL/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/nl_NL/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/nl_NL/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/nl_NL/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/nl_NL/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/nl_NL/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/nl_NL/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/nl_NL/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/nl_NL/docs/user-guide/archive/tiramisu/sidebar.md b/translations/nl_NL/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/nl_NL/docs/user-guide/archive/vwii/browser-exploit.md b/translations/nl_NL/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/nl_NL/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/nl_NL/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/nl_NL/docs/user-guide/archive/vwii/installing-cioses.md b/translations/nl_NL/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/nl_NL/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/nl_NL/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/nl_NL/docs/user-guide/archive/vwii/nand-backup.md b/translations/nl_NL/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/nl_NL/docs/user-guide/archive/vwii/patching-ios80.md b/translations/nl_NL/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/nl_NL/docs/user-guide/archive/vwii/sd-preparation.md b/translations/nl_NL/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/nl_NL/docs/user-guide/archive/vwii/sidebar.md b/translations/nl_NL/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/nl_NL/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/nl_NL/docs/user-guide/aroma/autoboot.md b/translations/nl_NL/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/nl_NL/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/nl_NL/docs/user-guide/aroma/browser-exploit.md b/translations/nl_NL/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/nl_NL/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/nl_NL/docs/user-guide/aroma/finalizing-setup.md b/translations/nl_NL/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/nl_NL/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/nl_NL/docs/user-guide/aroma/getting-started.md b/translations/nl_NL/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/nl_NL/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/nl_NL/docs/user-guide/aroma/installing-payloadloader.md b/translations/nl_NL/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/nl_NL/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/nl_NL/docs/user-guide/aroma/nand-backup.md b/translations/nl_NL/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/nl_NL/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/nl_NL/docs/user-guide/aroma/sd-preparation.md b/translations/nl_NL/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/nl_NL/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/nl_NL/docs/user-guide/aroma/sidebar.md b/translations/nl_NL/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/nl_NL/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/nl_NL/docs/user-guide/cbhc/browser-exploit.md b/translations/nl_NL/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/nl_NL/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/cbhc/ds-vc-choice.md b/translations/nl_NL/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/nl_NL/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/nl_NL/docs/user-guide/cbhc/installing-hblc.md b/translations/nl_NL/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/nl_NL/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/cbhc/launching-cfw.md b/translations/nl_NL/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/nl_NL/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/cbhc/nand-backup.md b/translations/nl_NL/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/nl_NL/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/cbhc/sd-preparation.md b/translations/nl_NL/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/nl_NL/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/nl_NL/docs/user-guide/cbhc/sidebar.md b/translations/nl_NL/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/nl_NL/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/cfw-choice.md b/translations/nl_NL/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/nl_NL/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/nl_NL/docs/user-guide/haxchi/browser-exploit.md b/translations/nl_NL/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/nl_NL/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/haxchi/ds-vc-choice.md b/translations/nl_NL/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/nl_NL/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/nl_NL/docs/user-guide/haxchi/installing-hblc.md b/translations/nl_NL/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/nl_NL/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/haxchi/launching-cfw.md b/translations/nl_NL/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/nl_NL/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/haxchi/nand-backup.md b/translations/nl_NL/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/nl_NL/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/haxchi/sd-preparation.md b/translations/nl_NL/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/nl_NL/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/nl_NL/docs/user-guide/haxchi/sidebar.md b/translations/nl_NL/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/nl_NL/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/introduction.md b/translations/nl_NL/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/nl_NL/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/nl_NL/docs/user-guide/mocha/entrypoint-choice.md b/translations/nl_NL/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/nl_NL/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/nl_NL/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/nl_NL/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/nl_NL/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/nl_NL/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/nl_NL/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/nl_NL/docs/user-guide/mocha/indexiine/sidebar.md b/translations/nl_NL/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/nl_NL/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/nl_NL/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/nl_NL/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/nl_NL/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/nl_NL/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/nl_NL/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/mocha/sidebar.md b/translations/nl_NL/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/nl_NL/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/tiramisu/autoboot.md b/translations/nl_NL/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/nl_NL/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/nl_NL/docs/user-guide/tiramisu/browser-exploit.md b/translations/nl_NL/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/nl_NL/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/nl_NL/docs/user-guide/tiramisu/finalizing-setup.md b/translations/nl_NL/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/nl_NL/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/nl_NL/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/nl_NL/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/nl_NL/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/nl_NL/docs/user-guide/tiramisu/nand-backup.md b/translations/nl_NL/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/nl_NL/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/nl_NL/docs/user-guide/tiramisu/sd-preparation.md b/translations/nl_NL/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/nl_NL/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/nl_NL/docs/user-guide/tiramisu/sidebar.md b/translations/nl_NL/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/nl_NL/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/nl_NL/docs/user-guide/vwii/browser-exploit.md b/translations/nl_NL/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/nl_NL/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/nl_NL/docs/user-guide/vwii/finalizing-setup.md b/translations/nl_NL/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/nl_NL/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/nl_NL/docs/user-guide/vwii/installing-cioses.md b/translations/nl_NL/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/nl_NL/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/nl_NL/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/nl_NL/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/nl_NL/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/nl_NL/docs/user-guide/vwii/nand-backup.md b/translations/nl_NL/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/nl_NL/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/nl_NL/docs/user-guide/vwii/patching-ios80.md b/translations/nl_NL/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/nl_NL/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/nl_NL/docs/user-guide/vwii/sd-preparation.md b/translations/nl_NL/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/nl_NL/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/nl_NL/docs/user-guide/vwii/sidebar.md b/translations/nl_NL/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/nl_NL/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/nl_NL/docs/user-guide/vwii/vwii-modding.md b/translations/nl_NL/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/nl_NL/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/nl_NL/docs/vwii/vwii-modding.md b/translations/nl_NL/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/nl_NL/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/no_NO/docs/extras/about.md b/translations/no_NO/docs/extras/about.md deleted file mode 100644 index 72d7a1f8842..00000000000 --- a/translations/no_NO/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# Om Denne Guiden ---- -Denne guiden er skrevet av staff fra [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Forfattere** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, og redcubie.** -> -> Takk til [alle andre ](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) som bidrar til guiden på GitHub. - -?> [Du kan finne guiden vår på GitHub](https://github.com/hacks-guide/Guide-WiiU), den bruker [ISC-lisens](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Utviklere og Verktøy** -> -> - **GaryOderNichts** og **Maschell** for [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), "fixed" versjonen av [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), og [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** og **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** og **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), [Aroma Downloader](https://aroma.foryour.cafe), og Tiramisu/Aroma. -> -> - **FIX94** og **smealum** for [Haxchi og CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), og [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** og **dimok789** for [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** og **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** og **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** og **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, og **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** og **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** og **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/no_NO/docs/extras/block-updates.md b/translations/no_NO/docs/extras/block-updates.md deleted file mode 100644 index 6cc87adfa3d..00000000000 --- a/translations/no_NO/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blokkere Systemoppdateringer ---- -Alle Wii U exploits vi kjenner til i dag, i motsetning til for eksempel Nintendo Switch sin RCM exploit, kan bli patchet av en systemoppdatering. Selv om Wii U ikke lenger er offisielt støttet av Nintendo, kan de fortsatt plutselig komme med oppdateringer. For eksempel, firmware 5.5.3 til 5.5.6 ble alle utgitt etter at Nintendo kuttet support, så det er fortsatt anbefalt at man blokkerer systemoppdateringer. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instruksjoner {docsify-ignore} - -For tiden finnes det en måte å blokkere systemoppdateringer på Wii U: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/no_NO/docs/extras/configurable-payload.md b/translations/no_NO/docs/extras/configurable-payload.md deleted file mode 100644 index 80b220d8997..00000000000 --- a/translations/no_NO/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -Denne payloaden er konfigurerbar, lignende Haxchi sin config. Dette kan være nyttig for Mocha brukere, fordi man slipper å starte Mocha gjennom Homebrew Launcher. - -### Dette Trenger Du {docsify-ignore} - -- configurable payload. -- Siste utgave av [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instruksjoner {docsify-ignore} - -1. Pakk ut `homebrew_launcher_channel.v2.1_fix.zip` til `install` mappen i roten av SD kortet. -1. Sett inn SD kortet i Wii U'en og start [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Start WUP Installer GX2 appen. -1. Velg `Homebrew Launcher Channel`. Trykk `Install` og installer til NAND. Dette vil starte installasjonen av Homebrew Launcher-kanalen til Wii U menyen. -1. Når prosessen er ferdig, trykk på HOME knappen til du er tilbake på Wii U menyen. -1. Akkurat nå vil ikke kanalen være mulig å kjøre siden den får en konflikt med versjonen som kjører fra SD kortet som du akkurat brukte. Start Wii U'en på nytt. -1. Løs ut SD kortet fra Wii U'en og sett det inn i pc'en. -1. Pakk ut `Configurable_Payload.zip` til roten av SD-kortet. La den overskrive filer på SD kortet ditt om den ber om det. -1. Sett inn SD kortet i Wii U'en, start nettleseren og gå til `wiiuexploit.xyz`. -1. Klikk på `Run Homebrew Launcher!`. Hvis alt er gjort riktig, skal du ende tilbake til Wii U menyen. Mocha er nå aktivert og du kan bruke Homebrew Launcher Kanalen som du installerte tidligere. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. diff --git a/translations/no_NO/docs/extras/donations.md b/translations/no_NO/docs/extras/donations.md deleted file mode 100644 index 21deb22c321..00000000000 --- a/translations/no_NO/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donering {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/no_NO/docs/extras/dump-games.md b/translations/no_NO/docs/extras/dump-games.md deleted file mode 100644 index cb2043acb72..00000000000 --- a/translations/no_NO/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumpe Wii U spill fra disk ---- -Ved å Dumpe en Wii U Disk, kan du installere en kopi av spillet til system NAND, eller en USB-enhet, slik at du kan spille det uten å sette inn disken. - -?> Det krever et fungerende Homebrew oppsett. Så sørg først for å fullføre guiden for å installere CFW før du går videre. - -!> Det er **ULOVLIG** å dele filer dumpet med denne guiden. -Ikke bruk denne guiden til å dele spillene dine. - -### Dumping og installasjon av Wii U disker - -?> Det anbefales ikke å installere et spill til systemminnet (NAND) siden lagringsplassen er begrenset til enten 8gb eller 32gb avhengig av modellen din, det blir fort fullt hvis du ønsker å installere flere spill. - -?> Når du installerer et spill til en USB-enhet, anbefaler vi at du bruker en ekstern harddisk istedenfor en USB-penn, siden de ikke er laget for kontinuerlig lesing og skriving, og vil brenne ut minnet fort. Hvis den eksterne harddisken din ikke har eget strømadapter, trenger du en Y-kabel for å koble den til to USB-porter i Wii U konsollen din. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Bekreft med "Yes". - -#### Dette Trenger Du {docsify-ignore} - -- SD-kortet må ha nok plass til spillet du vil dumpe. -- Hvis du ønsker å installere til USB, så trenger du en USB harddisk (+ en Y-kabel hvis det trengs). -- Siste utgave av [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- [Wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew appen. - -#### Instruksjoner {docsify-ignore} - -1. Pakk ut `wup_installer_gx2_wuhb.zip` fila til roten av SD-kortet. -1. Pakk ut `wudd.zip` til roten av SD-kortet. -1. Ta SD-kortet ut av PCen og sett det inn i Wii U konsollen. -1. Start opp Wii U'en og boot Aroma. -1. Start Wii U menyen og kjør wudd. -1. Velg `Dump partition as .app` -1. Velg `Game` partisjonen for å starte dumping. -1. Når det er ferdig, gå ut av wudd tilbake til Wii U-menyen. -1. Sett SD-kortet ditt i PC'en din. -1. Kopier `GMXXXXXXXXXXXXXXXX` mappen fra `sd:/wudump/WUP-X-XXXX` til `install` mappen på SD-kortet. - - Hvis `install` mappen ikke finnes, så opprett en ny en. -1. Løs ut og sett SD-kortet inn i Wii U-en. -1. Start Wii U menyen og kjør WUP Installer GX2. -1. Velg spillet ditt (`GMXXXXXXXXXXXXXXXX`), trykk `Install` og bekreft med `Yes`. -1. Velg "USB" for å installere til USB og "NAND" for å installere til NAND -1. Gå ut av WUP Installer GX2 tilbake til Wii U Menyen. -1. Nå er spillet ditt installert, og klart til å spille. -1. Ta SD-kortet ut av Wii U konsollen og sett den inn i PC'en din. -1. Slett `GMXXXXXXXXXXXXXXXX` mappen i `install` mappen på SD-kortet ditt for å frigjøre plass. - -### Flytte spill til USB - -?> Hvis du ikke vil ha spillet installert på NAND, så kan du bruke Wii U konsollens databehandling for å flytte spillet til en USB-enhet. - -!> For å flytte spillet til en USB-enhet, må den være formatert av Wii U konsollen. Når du formaterer USB-enheten så slettes alt innhold og hindrer enheten i å brukes med en annet Wii U konsoll eller PC ol. med mindre du formaterer det på nytt til ett annet format. - -1. Koble USB-enheten til Wii U konsollen din. -1. Slå på Wii U konsollen. -1. Wii U systemet vil spørre deg om å formatere USB-enheten din. Bekreft med "Yes". -1. Gå inn på systeminnstillinger. -1. Gå til `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Velg spillet og flytt all data (inkludert oppdateringer og DLC hvis dette er installert) over til USB-enheten. - -### Flytte oppdateringer til USB - -?> Hvis spillet ditt hadde DLC eller oppdateringer installert, må du overføre filene over til USB-enheten din. Du kan gjøre dette ved å bruke Wii U konsollens "data management". - -1. Slå på Wii U konsollen -1. Gå inn på systeminnstillinger. -1. Gå til `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Velg spillet ditt og flytt oppdateringen og DLC til USB-enheten. diff --git a/translations/no_NO/docs/extras/dump-wii-games.md b/translations/no_NO/docs/extras/dump-wii-games.md deleted file mode 100644 index b0cd59b45fb..00000000000 --- a/translations/no_NO/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumpe Wii spill fra disk ---- -Dumping av Wii diskene dine lar deg spille dem på en Wii-emulator (Dolphin), spille dem fra en USB/SD loader som for eksempel Wiiflow, lage Virtual Console Injects som kan installeres på en Wii U formatert USB-lagringsenhet eller NAND, eller kjøres fra Wii U-menyen. - -?> Dumping av Wii spill krever et fungerende Homebrew oppsett på vWii, så fullfør [vWii Modde guiden](vwii/sd-preparation) på forhånd. - -!> Det er **ULOVLIG** å dele filer dumpet med denne guiden. -Ikke bruk denne guiden til å dele spillene dine. - -### Dette Trenger Du {docsify-ignore} - -1. Siste utgave av [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. Filen [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat). - -### Instruksjoner {docsify-ignore} - -1. Sett SD-kortet ditt i PC'en din. -1. Kopier `apps` mappen fra `CleanRip-v2.1.1.zip` til roten av SD-kortet. -1. Kopier `wii.dat` til roten av SD-kortet. -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. - -### Dumpe Wii Disken - -1. Slå på Wii U konsollen og velg Wii menu ikonet for å starte opp vWii. -1. Start Homebrew Channel. -1. Kjør CleanRip. -1. Les ansvarsfraskrivelsen og trykk A. -1. Velg "Yes" for å aktivere Checksum kalkulasjoner. -1. Velg enten USB eller SD-kort avhengig av hvilken enhet du vil bruke for dumpeprosessen. - - Merk at enheten du velger må være formatert som FAT32 eller NTFS. -1. Trykk A for å fortsette. -1. Velg "No" i vinduet som ber deg laste ned redump.org DAT-filer. -1. Sett inn Wii disken din og trykk A. -1. Gå til [denne siden](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) for å se om Wii disken din er dual-layered. -1. Velg følgende instillinger: - - Dual Layer: `Yes/No` (Velg `Yes` hvis Wii disken din er dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. Dersom du ønsker å dumpe flere Wii disker, velg "Yes" for å huske innstillingene dine. Hvis ikke, velg "No". - -?> Vær forberedt på å vente en stund. Dumpeprosessen kan ta rundt 30 til 60 minutter avhengig av hastigheten på SD-kortet ditt. - -### Slå sammen Split Filer - -?> Hvis du dumpet Wii disken på en FAT32-formatert enhet, så burde du ha fått minst 2 filer som ender med `.partX.iso`. De må slåes sammen. - -#### Windows {docsify-ignore} - -1. Kopier alle filene som deler samme navn og slutter med `.partX.iso` i en mappe på PC'en din. -1. Høyreklikk inne i mappen mens du holder Shift og velg `Åpne PowerShell-vindu her`. -1. I PowerShell-vinduet, skriv: `cmd.exe /c "copy /b *.part?.iso game.iso"` og trykk Enter. - -#### macOS/Linux {docsify-ignore} - -1. Kopier alle filene som deler samme navn og slutter med `.partX.iso` i en mappe på PC'en din. -1. Åpne opp Terminal. -1. Skriv `cd ` og erstatt `` med adressen til `.partX.iso` filene og trykk enter. -1. Skriv: `cat *.part?.iso > game.iso` og trykk enter. diff --git a/translations/no_NO/docs/extras/faq.md b/translations/no_NO/docs/extras/faq.md deleted file mode 100644 index 57608e39044..00000000000 --- a/translations/no_NO/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Ofte stilte spørsmål {docsify-ignore-all} ---- - -### Er det noen risikoer ved å bruke homebrew? - -For øyeblikket er det ingen risiko for å bli banned av Nintendo ved bruk av homebrew med mindre du jukser i online spill, eller svindler eShop. Men du bør alltid være forsiktig med å kjøre nedlastede homebrew filer, spesielt hvis du ikke stoler på kilden, da homebrew kan potensielt skade systemet ditt! - -### Hva er exploits? - -Exploits er inngangsporter man kan utnytte for å kjøre homebrew. I hovedguiden, vil du bruke exploits sånn som browser exploit (http://wiiuexploit.xyz) og PayloadLoader (Health & Safety exploit). Alle nåværende exploits åpner `SD:/wiiu/payload.elf` som hjelper resten av homebrew å kjøre. - -### Hva er payloads? - -Payloads, som normalt har filnavnet `payload.elf`, finnes for å gjøre det lettere å kjøre forskjellige exploits på det samme stadiet, noe som gjør det lettere å oppdatere. Det har ingenting å si hvilket exploit som loader payload, resultatet vil alltid være det samme. Flere payloads kan byttes imellom hverandre ved å bruke PayloadLoaderPayload. Payloaden vi bruker i hovedguiden er CustomRPXLoader som kjører `SD:/wiiu/payload.rpx` og `payload.rpx` som vi bruker i guiden er EnvironmentLoader, som gir deg tilgang til å kjøre forskjellige "environments". - -### Hva er Environments? - -Ett Environment er en kolleksjon av "setup moduler", som vil kjøre i en bestemt rekkefølge når man starter ett environment. Eksempel på environments er Aroma og Tiramisu. Setup moduler er små biter med homebrew/kode som kjører en gang for å sette opp ett environment. - -### Hvordan sletter man update mappa for å blokkere systemoppdateringer på Wii U konsollen - -Hvis du vil slette update mappa for å blokkere systemoppdateringer, skjekk ut hvordan man kan [Blokkere Oppdateringer ](block-updates). - -### Hva slags SD-kort størrelse anbefales? - - - **Installering av spill:** 32gb (man kan bruke mindre størrelser, men noen spill er oppe i 20gb) - - **Kjøre spill mods:** 8gb (FAT32 USB penn kan også brukes til mods) - - **Bare homebrew-apper:** Alle størrelser. - -**Anbefalte merker:** SanDisk, Samsung eller PNY - -?> Merk: Unngå class 4 SD-kort, og kort fra eBay! - -### Kan jeg installere homebrew på Wii U med en USB penn i stedenfor ett SD-kort? - -Nei, du må ha et SD-kort for et første gangs oppsett. En USB-enhet kan deretter brukes til å installere spill, VC injections osv, men ikke lagre homebrew apper som er nødvendig for å sette opp alt. - -### Når jeg pakker ut noen av filene er det duplikater av noen som heter "info.json" & "manifest.install", hva gjør jeg med dem? - -Du kan la dem ligge, slette dem eller kopiere over dem med de nye filene. Disse filene brukes ikke i prosessen, derfor er det ingen forskjell på om de er der eller ikke. - -### Hva er en Wii U formatert USB lagringsenhet? - -Det er en USB penn eller harddisk som er formatert av en Wii U konsoll til sitt proprietære format. -En Wii U-formatert USB-enhet ***kan ikke leses av noen andre enheter enn Wii U konsollen som formaterte den. *** -Hvis du vil bruke den med en annen Wii U konsoll eller en PC, må du formatere den igjen. diff --git a/translations/no_NO/docs/extras/find-wiiu-ip-address.md b/translations/no_NO/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 72785394e2b..00000000000 --- a/translations/no_NO/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# Hvordan finne IP-adressen til Wii U konsollen din ---- -Dette er en rask veiledning om hvordan du finner IP-adressen til Wii U-konsollen din. - -### Dette trenger du - -1. Siste utgave av [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Pakk ut `ftpiiu.zip` til roten av SD-kortet. - -### Instruksjoner - -1. Start Homebrew Launcher. -1. Kjør FTPiiU. -1. IP-adressen til Wii U konsollen din blir vist nederst på skjermen. -1. For å gå ut av FTPiiU, trykk på HOME knappen. \ No newline at end of file diff --git a/translations/no_NO/docs/extras/unblock-updates.md b/translations/no_NO/docs/extras/unblock-updates.md deleted file mode 100644 index e8a14b4b396..00000000000 --- a/translations/no_NO/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Fjerne blokkering av oppdateringer ---- -Dette må du gjøre hvis du noen gang trenger en systemoppdatering. - -?> Hvis du kjører Aroma og har sletta update mappa, så må du deaktivere autobooting og lage en ny update mappe på konsollen. - -### Instruksjoner {docsify-ignore} - - - -#### **Fjerne Aroma Autoboot** - -### Fjerne Aroma Autoboot - -?> Når du booter inn i PayloadLoader, vil oppdateringer automatisk blokkeres. Følg guiden nedenfor for å deaktivere den. - -1. Kjør PayloadLoader Installer fra Wii U Menyen. -1. Trykk A for å velge `Check`. -1. Velg `Boot options`. -1. Du vil bli spurt om du vil bytte boot title. Trykk A for å velge `Switch back to Wii U Menu`. -1. Når prosessen er ferdig, trykk A for å slå av konsollen. -1. Kjør en System Update. -1. Følg [denne guiden](../docs/user-guide/aroma/autoboot) for å reaktivere autobooting. - -#### **Gjenopprette "update" mappen** - -### Gjenopprette "update" mappen - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Fjerne DNS-blokkeringen** - -### Fjerne DNS-blokkeringen - -1. På Wii U konsollen, gå inn på systeminnstillinger og naviger til `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` og sett den på `Auto-obtain `. -1. Du blokkerer ikke lenger systemoppdateringer. - - diff --git a/translations/no_NO/docs/extras/uninstall-cbhc.md b/translations/no_NO/docs/extras/uninstall-cbhc.md deleted file mode 100644 index c8ad1d1ef92..00000000000 --- a/translations/no_NO/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Avinstallere CBHC ---- -Denne siden vil hjelpe deg med å avinstallere CBHC fra Wii U konsollen din. - -### Instruksjoner {docsify-ignore} - -1. Start Homebrew Launcher. -1. kjør CBHC installer. -1. Velg DS VC-spillet du ønsker å slette CBHC fra og trykk på `A` knappen. -1. Les advarslene og trykk på `B` knappen. -1. Sjekk at Wii U konsollen ikke lenger starter CBHC automatisk ved å restarte konsollen. -1. Hvis det ikke dukket opp ett "autobooting" vindu eller en meny-skjerm mens konsollen startet opp, så kan du gå inn på systeminnstillinger og videre til Data Management og trygt slette appen som heter `DON'T TOUCH ME`. - -?> Hvis du får opp feilmeldingen, "A system-memory error has occurred. Turn off the console, and then try again." når du sletter `DON'T TOUCH ME` appen, start konsollen på nytt og prøv å slette appen en gang til. **Sørg** for at du fulgte alle trinnene over før du sletter appen. \ No newline at end of file diff --git a/translations/no_NO/docs/extras/uninstall-indexiine.md b/translations/no_NO/docs/extras/uninstall-indexiine.md deleted file mode 100644 index e86061c29ce..00000000000 --- a/translations/no_NO/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Avinstallere Indexiine ---- -Denne siden vil hjelpe deg med å avinstallere Indexiine fra Wii U konsollen din. - -### Instruksjoner {docsify-ignore} - -1. Start Homebrew Launcher. -1. Start Indexiine-Installer. -1. Trykk på B knappen for å avinstallere Indexiine. -1. Sjekk at Wii U konsollen ikke lenger åpner Homebrew Launcher når du starter nettleseren. diff --git a/translations/no_NO/docs/extras/uninstall-payloadloader.md b/translations/no_NO/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index df757b88719..00000000000 --- a/translations/no_NO/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Avinstallere PayloadLoader ---- -Denne siden vil hjelpe deg med å avinstallere PayloadLoader fra Wii U konsollen din. - -!> En factory reset **vil ikke** avinstallere en injected PayloadLoader. For å avinstallere det, følg denne guiden. - -### Dette Trenger Du {docsify-ignore} - -- Siste utgave av [Aroma for your café](https://aroma.foryour.cafe). - 1. Bla ned til **Download**. - 1. Les gjennom trinnene og marker checkboksene. - 1. Trykk på `Download Payloads` og `Download Base Aroma`. - -### Tilbakestille Autobooting inn i PayloadLoader - -1. Kjør PayloadLoader Installer fra Wii U Menyen. -1. Trykk A for å velge `Check`. -1. Velg `Boot options`. -1. Du vil bli spurt om du vil bytte boot title. Trykk A for å velge `Switch back to Wii U Menu`. -1. Når prosessen er ferdig, trykk A for å slå av konsollen. -1. Konsollen vil slå seg på igjen og gå til Wii U Menu. PayloadLoader kan fortsatt startes ved å kjøre Health & Safety Appen. - -### Avinstallere PayloadLoader - -1. Kjør Health & Safety Appen og boot inn i Aroma. -1. Kjør PayloadLoader Installer fra Wii U Menyen. -1. Trykk A for å velge `Check`. -1. Velg `Remove`. -1. Du vil bli spurt om du virkelig vil fjerne PayloadLoader. Velg `Remove` igjen. -1. Når prosessen er ferdig, trykk A for å slå av konsollen. diff --git a/translations/no_NO/docs/privacy/privacy-policy.md b/translations/no_NO/docs/privacy/privacy-policy.md deleted file mode 100644 index 94584c32000..00000000000 --- a/translations/no_NO/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PERSONVERN NOTIFIKASJON {docsify-ignore-all} - -**Sist oppdatert 18. Januar, 2020** - - -Takk for at du velger å være en del av samfunnet vårt i Wii U Hacks Guide (“selskapet”, ”vi”, "oss", eller ”vår”). Vi er forpliktet til å beskytte dine personopplysninger og din rett til personvern. Hvis du har spørsmål eller bekymringer om vår politikk, eller våre praksiser med hensyn til din personlige informasjon, vennligst kontakt oss på nh.wiiuguide@gmail.com. - -Når du besøker nettsiden vår https://wiiu.hacks.guide, og bruker våre tjenester, stoler du på oss med din personlige informasjon. Vi tar personvernet ditt svært alvorlig. I denne personverns erklæringen beskriver vi våre retningslinjer for personvern. Vi ønsker å forklare for deg på den tydeligste mulige måten hva slags informasjon vi samler inn, hvordan vi bruker den og hvilke rettigheter du har i forhold til den. Vi håper du tar deg tid til å lese gjennom nøye, siden dette er viktig. Dersom det er noen vilkår i denne personverns erklæringen du ikke er enig med, vennligst avbryt bruken av våre nettsteder og våre tjenester. - -Denne personvernerklæringen gjelder all informasjon som blir samlet på nettstedet vårt (f.eks. https://wiiu.hacks.guide), og/eller alle relaterte tjenester, salg, markedsføring eller arrangement (vi refererer til dem samlet i denne personvernerklæringen som "**Sites**"). - -**Les denne personvernerklæringen nøye.** - - -## INNHOLD - -[1. HVA SLAGS INFORMASJON HENTER VI?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. BRUKER VI COOKIES OG ANDRE TRACKING TEKNOLOGIER?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. HVA ER RETTIGHETENE DINE FOR PERSONVERN?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. HAR INNBYGGERE I CALIFORNIA SPESIELLE PERSONVERN RETTIGHETER?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. LAGER VI OPPDATERINGER TIL DENNE POLITIKKEN?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HVORDAN KAN DU KONTAKTE OSS OM DENNE POLITIKKEN?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. HVA SLAGS INFORMASJON HENTER VI? :id=_1-what-information-do-we-collect - -***Kort fortalt:*** *Vi samler ikke inn personlige opplysninger.* - -Vi samler ikke inn personlig informasjon i noen form. Men, våre verter, [GitHub Sider](https://pages.github.com/) kan samle inn personlig informasjon. For mer informasjon, se [GitHub's personvern erklæring](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. BRUKER VI COOKIES OG ANDRE TRACKING TEKNOLOGIER :id=_2-do-we-use-cookies-and-other-tracking-technologies -***Kort fortalt:*** *Vi bruker ikke cookies og andre sporingsteknikker for å samle og lagre din informasjon.* - -Vi bruker ikke cookies og lignende sporingsteknikker (som web beacons og pixels) for å få tilgang til, eller lagre informasjon. - - -### 3. HVA ER RETTIGHETENE DINE FOR PERSONVERN? :id=_3-what-are-your-privacy-rights - -***Kort fortalt:*** *I enkelte områder, for eksempel i Det Europeiske Økonomiske Samarbeidsområdet (herved forkortet til EØS), har du rettigheter som gir deg større tilgang til og kontroll over dine personlige opplysninger. Du kan gjennomgå, endre eller avslutte kontoen din når som helst.* - -I noen regioner (som i EØS land) har du visse rettigheter under gjeldende personvernlovgivning. Disse kan omfatte rett (i) til å be om adgang til og innhente en kopi av dine personopplysninger (ii) til å be om korrigering eller sletting av dem; (iii) å begrense behandlingen av din personlige informasjon og (iv) om relevant, for data portabilitet. I visse tilfeller kan det hende du også har rett til å motsette deg behandling av dine personlige opplysninger. For å lage en slik forespørsel, bruk [Kontaktopplysningene](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) som vist nedenfor. Vi vil vurdere og handle på enhver forespørsel i samsvar med gjeldende personvernlovgivning. - -Hvis vi er avhengig av ditt samtykke til å behandle din personlige informasjon, har du rett til å trekke tilbake ditt samtykke når som helst. Det er imidlertid viktig å merke seg at dette ikke vil påvirke rettssikkerheten til behandlingen før uttrekket. - -Hvis du er bosatt i ett EØS land, og du mener vi behandler dine personopplysninger ulovlig, har du rett til å klage til din lokale personvernmyndighet. Kontaktinformasjon finner du her: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. HAR INNBYGGERE I CALIFORNIA SPESIELLE PERSONVERN RETTIGHETER? :id=_4-do-california-residents-have-specific-privacy-rights - -***Kort fortalt:*** *Ja, hvis du er innbygger i California, så har du spesifikke rettigheter angående tilgangen til din personlige informasjon.* - -California Civil Code Section 1798.83, også kjent som «Shine The Light»-loven, gir brukerne våre som er California innbyggere tilgangen til å be om og motta fra oss, gratis en gang i året, informasjon om kategorier av personlig informasjon (hvis det er noen) som vi har delt med tredjepart for direkte markedsføringsformål og navn og adresser til alle tredjeparter som vi delte personopplysninger med i det foregående kalenderåret. Hvis du er en California innbygger og ønsker å komme med en forespørsel, send forespørselen din skriftlig til oss ved hjelp av kontaktopplysningene som er gitt nedenfor. - -Er du under 18 år, innbygger i California, og har en registrert konto på sidene, så har du rett til å be om fjerning av uønskede data som du offentlig poster på sidene. For å be om å fjerne slik data, vennligst kontakt oss ved å bruke kontaktinformasjonen nedenfor og inkluder e-postadressen som er tilknyttet din konto og en påstand om at du oppholder deg i California. Vi skal sikre at dataene ikke er offentlig vist på de valgte sidene, men vær oppmerksom på at dataene ikke nødvendigvis er fullstendig fjernet fra våre systemer. - - -### 5. LAGER VI OPPDATERINGER TIL DENNE POLITIKKEN? :id=_5-do-we-make-updates-to-this-policy - -***Kort fortalt:*** *Ja, vi oppdaterer denne politikken etter behov for å holde seg i samsvar med relevante lover.* - -Vi kan oppdatere personvernerklæringen fra tid til annen. Den oppdaterte versjonen vil bli indikert med en oppdatert dato for "Revidert Innhold" og den oppdaterte versjonen vil være gyldig så snart den er tilgjengelig. Hvis vi gjør vesentlige endringer i denne personvernerklæringen, kan vi gi beskjed ved å enten tydelig poste et varsel om slike endringer eller ved å sende deg en melding. Vi oppfordrer deg til å gjennomgå denne personvernerklæringen ofte for å bli informert om hvordan vi beskytter informasjonen din. - - -### 6. HVORDAN KAN DU KONTAKTE OSS OM DENNE POLITIKKEN? :id=_6-how-can-you-contact-us-about-this-policy - -Hvis du har spørsmål eller kommentarer om denne politikken, kan du sende oss en e-post på nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/no_NO/docs/sidebar.md b/translations/no_NO/docs/sidebar.md deleted file mode 100644 index fdf827040e2..00000000000 --- a/translations/no_NO/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **Bruker Guide** -- [Introduksjon](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modifisering](vwii/vwii-modding) -- **Feilsøking** -- [Vanlige Feil & Løsninger](common-issues-fixes) -- [Gjenopprett en vWii IOS/Channel](recover-vwii-ioses-channels) -- **Ekstra** -- [Blokkere Systemoppdateringer](block-updates) -- [Fjerne Blokkering av Systemoppdateringer](unblock-updates) -- [Dumpe Wii U Spill fra Disk](dump-games) -- [Dumpe Wii Spill fra Disk](dump-wii-games) -- [Avinstallere CBHC](uninstall-cbhc) -- [Avinstallere Indexiine](uninstall-indexiine) -- [Avinstallere PayloadLoader](uninstall-payloadloader) -- [Ofte Stilte Spørsmål](faq) -- **Arkiv** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Utdaterte Metoder](archive/cfw-choice) -- [Konfigurerbar Payload](configurable-payload) -- [vWii Modifisering](archive/vwii/sd-preparation) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](donations) -- [Om denne guiden](about) -- **Personvern** -- [Retningslinjer for personvern](privacy-policy) diff --git a/translations/no_NO/docs/troubleshooting/common-issues-fixes.md b/translations/no_NO/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index 42d375eda67..00000000000 --- a/translations/no_NO/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Vanlige problemer & Løsninger {docsify-ignore-all} ---- -### Vanlige feil med Haxchi - - - **-3:** No SD Card detected. Sett inn SD-kortet på nytt og prøv igjen. Kontroller at SD-kortet er i FAT32-format. Hvis feilen vedvarer, kan du prøve å blåse inn i SD-kort åpningen, da det gjerne kan bli litt støvete. - - - **-4:** SD detected but could not mount. Kontroller om SD-kortet bruker MBR og ikke GPT. Sjekk også at det ikke er andre partisjoner på SD-kortet og eventuelt slå dem sammen til én primærpartisjon. - - - **-5:** Missing files on the SD. Sjekk om SD-kortet ditt har Homebrew Launcher plassert i /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Nettleser feil - - - **FSGetMountSource failed:** Samme som -3 ovenfor, betyr at SD-kortet ikke blir registrert. Sett inn SD-kortet på nytt og prøv igjen. Dette kan også bety at SD kortet har på skrivelås (Tappen på siden av kortet er dratt ned istedenfor opp) eller at du har gitt SD kortet navnet "WIIU", som vi tidligere har sagt vil lage konflikter. Hvis det ikke er noen av disse problemene, se på det siste forslaget om -3 ovenfor. - - - **FSOpenFile failed [...] payload.elf:** Mangler payload filen på SD-kortet. Skjekk at du har payload.elf i wiiu mappen, og at wiiu mappen er på roten av SD-kortet. - - - **FSOpenFile failed:** Mangler `homebrew_launcher` på SD-kortet. Skjekk at du har `homebrew_launcher.elf` i /wiiu/apps/homebrew_launcher mappen. - - - **SD Mount Failed:** Lignende feilkode -4, Konsollen gjenkjenner SD kortet, men klarer ikke mounte den. Sørg for at den er formatert riktig, og at den ikke er skadet. I tillegg er SD kort fra velkjente merkevarer mer kompatibelt (f.eks. SanDisk, Samsung, Lexar, osv.) og har større sjangs for å lykkes. - -### Data Management spør om "delete unnecessary data", what does it mean? - -Dette refererer til filer som ligger igjen fra ufullstendige installasjoner. Velg alltid "yes" for å slette disse dataene, da det bare tar plass uten grunn. Hvis den sletter i en uendelig loop, kan du manuelt slette dataene selv. -Bruk FTPiiU Everywhere og manøvrer til `/storage_mlc/usr/import` og slett alt i mappen hvis det er noe der. Det er her filene havner etter ufullstendige installasjoner. Bruker du en USB-enhet så er adressen `/storage_usb/usr/import`. -Mappen `import` bør alltid være tom. - -### Ekstern harddisk fungerer ikke eller lager en rar tikkelyd, hva skal jeg gjøre? - -Årsaken til dette er at Wii U konsollene ikke gir nok strøm gjennom én USB-port til bruk av eksterne harddisker. - -Du kan løse dette ved å enten bruke en ekstern harddisk med egen strømkilde, eller bruke en Y-Kabel for å koble den eksterne harddisken til to USB-porter. - -Dersom den eksterne harddisken fungerte i lengre tid uten strømadapter eller Y-kabel, og plutselig sluttet å virke for noen, eller alle spill, så er det det samme problemet og kan fikses ved å bruke en Y-kabel. - -### Når jeg pakker ut noen av filene er det duplikater av noen som heter "info.json" & "manifest.install", hva gjør jeg med dem? - -Du kan la dem ligge, slette dem eller kopiere over dem med de nye filene. Disse filene brukes ikke i prosessen, derfor er det ingen forskjell på om de er der eller ikke. - -### Wii U konsollen min mistet plutselig internett, og jeg har en ekstern harddisk oppå konsollen min. Hva må jeg gjøre? - -Wifi antenna inni konsollen kan bli forstyrra av magneten inni den eksterne hard disken. -Du kan flytte harddisken til en annen posisjon oppå Wii U'en, eller flytte den litt vekk fra Wii U'en. diff --git a/translations/no_NO/docs/troubleshooting/fix-errcode-112-1037.md b/translations/no_NO/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index 4cb26e0bf0a..00000000000 --- a/translations/no_NO/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# Hvordan fikse Feilkode 112-1037 ---- -Denne siden vil hjelpe deg med å fikse feilkode 112-1037. - -### Dette Trenger Du {docsify-ignore} - -- En fungerende [Homebrew installasjon](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(Høyreklikk -> Lagre lenke som... -> Klikk Lagre).** -- Siste utgave av [Python](https://www.python.org/downloads/). - -### Instruksjoner {docsify-ignore} - -1. Installer Python på PC'en din. - -### Fikse feilkoden - - - -#### **Windows** - -### Windows - -1. Slå på Wii U konsollen. -1. Start Homebrew Launcher og kjør Mocha. -1. Gå tilbake til Wii U-menyen. -1. Åpne opp et Command Prompt vindu. -1. Skriv: `cd `. - - Eksempel: cd C:\Brukere\brukernavn\Nedlastninger. -1. Skriv: `py -3 -i wupclient.py`. -1. Skriv inn IP-adressen til Wii U konsollen. - - Usikker på hvor du finner det? Les [dette](find-wiiu-ip-address). -1. Bruk riktig kommando avhengig av regionen til konsollen: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. Hvis kommandoen fungerte, vil du få følgende svar: `chmod returned 0x0`. -1. Feilkoden skal nå være borte. - -#### **macOS & Linux** - -### macOS & Linux - -1. Slå på Wii U konsollen. -1. Start Homebrew Launcher og kjør Mocha. -1. Gå tilbake til Wii U-menyen. -1. Åpne opp et terminalvindu. -1. Skriv: `cd `. - - På macOS er det vanligste stedet å finne nedlastede filer i /Brukere/brukernavn/Nedlastninger. - - På Linux er det vanligste stedet å finne nedlastede filer i /home/username/Downloads. -1. Skriv: `py -3 -i wupclient.py`. -1. Skriv inn IP-adressen til Wii U konsollen. - - Usikker på hvor du finner det? Les [dette](find-wiiu-ip-address). -1. Bruk riktig kommando avhengig av regionen til konsollen: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. Hvis kommandoen fungerte, vil du få følgende svar: `chmod returned 0x0`. -1. Feilkoden skal nå være borte. - - \ No newline at end of file diff --git a/translations/no_NO/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/no_NO/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index de4d18407cc..00000000000 --- a/translations/no_NO/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Gjenopprett en vWii IOS/Channel ---- -Denne siden vil hjelpe deg til å gjenopprette en IOS eller channel i vWii, om den er korrupt eller slettet av en eller annen grunn. - -!> Du kan potensielt ødelegge vWii NAND hvis du ikke er forsiktig! Vi anbefaler at du tar en[backup](vwii/nand-backup) av SLCCMPT og OTP mappene hvis du enda ikke har gjort det! - -?> Hvis du bruker en blokkeringsmetode for systemoppdateringer, må du [tilbakestille den ](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### Dette Trenger Du {docsify-ignore} - -- En fungerende [Homebrew installasjon](introduction) på Wii U siden. -- Siste utgave av [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instruksjoner {docsify-ignore} - -1. Pakk ut `decaffeinator.zip` til roten av SD-kortet. -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Slå på Wii U konsollen og start CFW (Mocha, Haxchi eller CBHC). -1. Start Homebrew Launcher. -1. Kjør vWii Decaffeinator. - -### Gjenopprettings prosessen - -Du vil få noen diverse alternativer. Det anbefales å prøve å gjenopprette gjennom `Advanced options` menyen hvis du vet hva du skal gjenopprette, eller `Light mode` hvis du ikke er sikker. I ekstreme tilfeller der ingen andre alternativer løser problemet, bør `Aggressive mode` brukes. - - - -#### **Avanserte alternativer** - -### Avanserte alternativer - -?> Denne modusen vil fjerne spesifikke IOS'er og kanaler for å installere dem på nytt. All annen data (inkludert cIOS) vil bli bevart. - -
-Klikk her for å vise hva som kan gjenopprettes med denne metoden. - -![Avanserte alternativer](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Velg `Advanced options` på menyen. -1. Bruk D-padden for å velge hva du ønsker å gjenopprette. -1. Trykk Start for å starte gjenopprettingsprosessen. -1. Når programmet er ferdig, la den starte System Settings. -1. Utfør en [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) for å fullføre gjenopprettingsprosessen. - -?> Du kan nå reaktivere din [blokkeringsmetode mot systemoppdateringer](block-updates). - -#### **Light mode** - -### Light mode - -?> Denne modusen vil slette System Menu, Wii Message Board save data, IOS'er og andre system titler for å installere dem på nytt. Dette vil også fjerne alle cIOS'er og disse må installeres på nytt. Alle andre data vil bli bevart. - -1. Velg `Light mode` på menyen. -1. Trykk Start for å starte gjenopprettingsprosessen. -1. Når programmet er ferdig, la den starte System Settings. -1. Utfør en [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) for å fullføre gjenopprettingsprosessen. - -?> Du kan nå reaktivere din [blokkeringsmetode mot systemoppdateringer](block-updates). - -> Hvis du mottar feilkode 160-0101 når du starter opp systemet etter at du har brukt vWii Decaffeinator ta ut den satte skiven og koble fra eventuelle eksterne stasjoner og start systemet på nytt. - -#### **Aggressive mode** - -### Aggressive mode - -!> Denne modusen vil slette **alt** for å installere originale IOS'er og kanaler på nytt. Vær oppmerksom på at alle cIOS'er, save data, og kanaler vil forsvinne, og at vWii NAND vil bli resatt til original! - -1. Velg `Aggressive mode` på menyen. -1. Les hele advarselen. Hvis du ønsker å fortsette, trykk på Start for å starte gjenopprettingsprosessen. -1. Når programmet er ferdig, la den starte System Settings. -1. Utfør en [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) for å fullføre gjenopprettingsprosessen. - -?> Du kan nå reaktivere din [blokkeringsmetode mot systemoppdateringer](block-updates). - -> Hvis du mottar feilkode 160-0101 når du starter opp systemet etter at du har brukt vWii Decaffeinator ta ut den satte skiven og koble fra eventuelle eksterne stasjoner og start systemet på nytt. - - - -> Hvis du mottar feilkode 105-3102 når du utfører systemoppdateringen, restart konsollen og forsøk oppdateringen på nytt. diff --git a/translations/no_NO/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/no_NO/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index 36fed707f26..00000000000 --- a/translations/no_NO/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Browser Exploit {docsify-ignore} - -For å installere CFW, må vi først starte Homebrew Launcher gjennom nettleseren. Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Start nettleseren og gå til `wiiuexploit.xyz`. -1. Klikk på `Run Homebrew Launcher!`. Konsollen skal starte Homebrew Launcher. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/no_NO/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index e581bca05b8..00000000000 --- a/translations/no_NO/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Velg ett DS VC-spill - -Det første du må velge er hvilket DS Virtual Console ("VC") spill du skal kjøpe. -Vær oppmerksom på at spillet du installerer Haxchi/CBHC over ikke vil kunne spilles lenger før du avinstallerer Haxchi/CBHC og så installerer spillet på nytt fra eShop. - -### Kompatible DS VC spill - -?> Hvis du har en europeisk regionkonsoll, er det en mulighet for at du allerede har Dr. Kawashimas Brain Training: How Old is Your Brain? gratis. Gå til [eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) og sjekk om du har spillet. - -Hvis du ikke eier noen av spillene nedenunder, så kan du ikke bruke denne metoden siden 3DS og Wii U eShop er stengt ned. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/no_NO/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/no_NO/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index 036cda91daf..00000000000 --- a/translations/no_NO/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Installere Homebrew Launcher Channel {docsify-ignore} - -Denne siden vil hjelpe deg med å installere Homebrew Launcher Channel som et program direkte på Wii U menyen for enkel tilgang. - -?> Denne siden gjelder bare for Haxchi og CBHC brukere. Homebrew Launcher Channel (den versjonen av Homebrew Channel du kjører fra Wii U Menu) vil **ikke** fungere med Mocha CFW! - -### Instruksjoner {docsify-ignore} - -1. Slå på Wii U konsollen. -1. Trykk på Home-knappen under `Autobooting...` vindu for å komme deg inn i oppstartsmenyen. -1. Velg `Boot Homebrew Launcher` for å starte Homebrew Launcher. -1. Start WUP Installer GX2 appen. -1. Bruk touch-skjermen for å velge `Homebrew Launcher Channel`. Trykk `Install` og bekreft med `Yes`. -1. Velg NAND som installasjonsdestinasjon. Dette vil starte installasjonen av Homebrew Launcher-kanalen til Wii U menyen. -1. Når prosessen er ferdig, trykk på Home-knappen til du er tilbake på Wii U menyen. -1. Du har nå installert Homebrew Launcher Channel og kan finne den på Wii U Menyen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/no_NO/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index b27f1583249..00000000000 --- a/translations/no_NO/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Bruke CFW {docsify-ignore} - -Nå som du har en NAND backup i tilfelle noe går galt senere, kan du kjøre CFW på systemet ditt. - -I motsetning til systemer som DSi, Wii eller 3DS, er Wii U CFW midlertidig. Dette betyr at så snart systemet starter på nytt, vil du miste CFW og må følge disse instruksjonene igjen. Det trenger du ikke ved å installere CBHC på en Haxchi CFW installasjon. - -!> Å installere CBHC kan "bricke" Wii U konsollen. Følg reglene under når du installerer CBHC:
- DS spillet må være legitimt installert gjennom eShop!
- Ikke formater konsollen mens CBHC er installert!
- Ikke slett bruker kontoen som kjøpte DS VC spillet!
- Ikke installer spillet på nytt ved bruk av WUP installer eller fra eShop!
- Ikke installer Haxchi over CBHC!
- Ikke slett DS Virtual Console spillet uten å [slette CBHC på riktig måte først](../uninstall-cbhc)!
- Ikke flytt DS VC spillet til en USB lagringsenhet! - -!> Hvis du bryter en av reglene ovenfor, vil du "bricke" konsollen. - -> Hvis du er redd for å tilfeldigvis bryte en av disse reglene mens du bruker CBHC, foreslår vi å sette opp Parental Controls for brukeren din! Blokkere `Data Management` og sette `Game Rating` til det høyeste nivået kan stoppe deg fra å gjøre de vanligste feilene som forårsaker en CBHC brick. Sjekk [her](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for mer informasjon om hvordan du endrer Parental Controls innstillinger. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PCen og sett det inn i Wii U konsollen. -1. Hvis du ikke har gjort det enda, last ned DS VC spillet du valgte fra eShop. -1. Start Homebrew Launcher på Wii U konsollen din som [forklart tidligere](browser-exploit). -1. Kjør Haxchi appen. -1. Bruk D-padden til å flytte markøren til spillet du ønsker å installere Haxchi over og trykk på A knappen for å installere den. -1. Når installasjonen er ferdig, vil konsollen gå tilbake til Wii U menyen. Der vil du se spillet ditt erstattet med et Haxchi ikon. -1. Kjør Haxchi. Dette vil starte konsollen på nytt og aktivere CFW. -1. Kjør Haxchi igjen og hold A knappen mens den starter. Dette vil sende deg til Homebrew Launcher. -1. I Homebrew Launcher, kjør CBHC appen. -1. Bruk D-padden for å flytte markøren til spillet du installerte Haxchi over og trykk på A knappen for å installere CBHC. -1. Når installasjonen er ferdig, vil konsollen gå tilbake til Wii U menyen. -1. Start konsollen på nytt. Hvis CBHC er installert riktig, bør du se en ny oppstartsmeny. (CBHC er ikke kompatibel med Quick Start. Hvis du bruker Quick Start Menu, slå den av.) -1. Bruk D-padden for å flytte til `Autoboot: Disabled` og trykk på A knappen helt til det står `Autoboot: System Menu`. -1. Bruk D-padden for å flytte til `Boot system menu` og trykk på A-knappen. Dette vil åpne Wii U menyen med CFW aktivert. -1. Konsollen din kommer nå til å automatisk være i CFW etter oppstart. -1. Du kan nå koble til eventuelle USB-enheter du hadde tilkoblet, før du startet guiden. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/cbhc/nand-backup.md b/translations/no_NO/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 8e427342fe6..00000000000 --- a/translations/no_NO/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Lage en NAND backup{docsify-ignore} - -Hvis noe går galt senere i prosessen og Wii U konsollen "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -### Instruksjoner {docsify-ignore} - -?> Størrelsen på Wii U NAND er (avhengig av modellen) enten 8gb eller 32gb. På grunn av dette så må du bruke ett SD-kort som er større enn NAND størrelsen. Hvis SD-kortet ditt ikke er stort nok, så kan du hoppe over `MLC` delen hvor spilldata og saves er lagret, den er ikke nødvendig for å gjenopprette de fleste bricke-tilfellene. - -?> Å gjenopprette en NAND backup på Wii U konsollen krever litt kunskap om maskinvare og loddeferdigheter av mikro elektronikk.
Men å lage en NAND backup er **alltid** lurt, så du burde ikke hoppe over det.
NAND backupen din er unik for ditt system. backups fra andre konsoller vil **ikke** fungere. - -1. Gå til Homebrew Launcher og kjør `Wii U NAND Dumper` appen. -1. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Trykk på A knappen for å starte dumpingprosessen. -1. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -1. For å forsikre deg om at du ikke mister filene, kopier `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp. ` og hvis du valgte å gå for full sikkerhetskopi, `hver mlc.bin.part` til PC'en din. -1. Slett filene fra SD-kortet for å frigjøre plass. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/no_NO/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 435fc740407..00000000000 --- a/translations/no_NO/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Forberede SD-kortet {docsify-ignore} - -Her vil vi plassere de nødvendige CFW-filene og noen ekstra homebrew filer på SD-kortet. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "Allocation unit size" for å formatere den. **Ikke** sett navnet på SD kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -### Dette Trenger Du {docsify-ignore} - -- Siste utgave av [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Du må laste ned `payload.zip` filen. -- [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) Versjon 1.4. - - Du må laste ned `homebrew_launcher.v.1.4.zip`. -- Siste utgave av [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Siste utgave av [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Du må laste ned `homebrew_launcher_channel.v2.1_fix.zip` filen. -- Siste utgave av [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Siste utgave av [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Du må laste ned `wiiu-extracttosd.zip` filen. -- Siste utgave av [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- Siste utgave av [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- Siste utgave av SaveMii Mod. - -### Instruksjoner {docsify-ignore} - -?> **Merk** info.json og manifest.Install filene er ikke nødvendig for modifiseringsprosessen og kan slettes. - -1. Sett SD-kortet ditt i PC'en din. -1. Opprett en mappe med navnet `install` på roten av SD-kortet. -1. Pakk ut `homebrew_launcher_channel.v2.1_fix.zip` til `install` mappen. -1. Pakk ut `haxchi.zip` til roten av SD-kortet. -1. Pakk ut `cbhc.zip` til roten av SD-kortet. -1. Pakk ut `wup_installer_gx2.zip` til roten av SD-kortet. -1. Pakk ut `nanddumper.zip` til roten av SD-kortet. -1. Pakk ut `wiiu-extracttosd.zip` til roten av SD-kortet. -1. Pakk ut `homebrew_launcher.v.1.4.zip` til roten av SD-kortet. -1. Pakk ut `savemii_mod.zip` til roten av SD-kortet. -1. Kopier `payload.elf` fila fra `payload.zip` til `wiiu` mappen på SD-kortet. ----------- - -### SD-kort oppsett {docsify-ignore} - -
-Klikk her for å se hvordan SD-kort oppsettet skal se ut. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Alle andre apper som disc2app, nanddumper, etc. skal være her også) - ┗ 📜payload.elf -``` - -
diff --git a/translations/no_NO/docs/user-guide/archive/cbhc/sidebar.md b/translations/no_NO/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 3ec025979ff..00000000000 --- a/translations/no_NO/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Hjemmesiden](../../introduction) -- [Velg CFW](../cfw-choice) -- [Velg ett DS VC-spill](ds-vc-choice) -- [Forberede SD-kortet](sd-preparation) -- [Nettleser Exploit](browser-exploit) -- [Lage en sikkerhetskopi av NAND](nand-backup) -- [Bruke CFW](launching-cfw) -- [Installere Homebrew Channel](installing-hblc) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../../donations) -- [Om denne guiden](../../about) \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/cfw-choice.md b/translations/no_NO/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index f3f7436f5e0..00000000000 --- a/translations/no_NO/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Velg CFW løsningen du ønsker å bruke ---- -!> **METODENE BESKREVET PÅ DENNE SIDEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../introduction)** - -?> Før du starter, oppdater Wii U konsollen til siste firmware (5.5.6 for Nord Amerikanske konsoller, og 5.5.5 for alle andre regioner) hvis du ikke har gjort det allerede. - -Det er 2 hoved custom firmwares: Haxchi/Coldboot Haxchi (vanligst forkortet som "CBHC") og Mocha. - -Haxchi/CBHC blir begge installert over ett originalt DS Virtual Console spill. Haxchi må startes fra Wii U Menu manuelt for å starte opp custom firmware, mens CBHC starter opp curstom firmware automatisk når systemet starter opp. Mocha er tilgjengelig gjennom browser exploit eller Indexiine, som gjør det til den eneste custom firmware'n som kan kjøres uten å måtte kjøpe ett spill den kan brukes med. - -custom firmware versjonen du velger er ut fra **dine** preferanser. Det er ikke noen riktig eller feil custom firmware å velge, så det anbefales at du velger den som passer best til dine behov! - -## Haxchi - -- Krever et legitimt, installert DS Virtual Console spill fra eShop. -- Kan brukes for å starte CFW direkte fra Wii U menyen. -- Du må starte denne på nytt etter hver omstart for å aktivere custom firmware igjen. -- Du kan få den til å starte sammen med Wii U konsollen hvis du installerer ColdbootHaxchi (CBHC) over Haxchi installasjonen. - -### [**Fortsett med Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Hvis du installerer CBHC feil, så kan den bricke Wii U'en din! Sørg for å følge reglene ved installasjon av CBHC:
- DS spillet må være legitimt installert fra eShop!
- Ikke formater konsollen mens CBHC er installert!
- Ikke slett bruker kontoen som kjøpte DS VC spillet!
- Ikke installer spillet på nytt ved bruk av WUP installer eller fra eShop!
- Ikke installer Haxchi over CBHC! (Ikke akkurat en brick, men vil sette konsollen i en boot-loop! Hold A når du starter konsollen for å få tilgang til Homebrew Launcher og avinstaller CBHC.)
- Ikke slett DS Virtual Console spillet uten å [slette CBHC på riktig måte først](../uninstall-cbhc)!
- Ikke flytt DS VC spillet til en USB lagringsenhet! - -!> Bryter du 1 av reglene over, så **kan** Wii U'en bricke! - -> Hvis du er redd for å tilfeldigvis bryte en av disse reglene mens du bruker CBHC, foreslår vi å sette opp Parental Controls for brukeren din! Blokkere `Data Management` og sette `Game Rating` til det høyeste nivået kan stoppe deg fra å gjøre de vanligste feilene som forårsaker en CBHC brick. Sjekk [her](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for mer informasjon om hvordan du endrer Parental Controls innstillinger. - -- Krever et legitimt, installert DS Virtual Console spill fra eShop. -- Starter custom firmware automatisk ved hver oppstart. - -### [**Fortsett med CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Krever ingen spill fra eShop, og er derfor en gratis løsning. -- Du må starte denne på nytt etter hver omstart for å aktivere custom firmware igjen. -- Er ikke kompatibel med Homebrew Launcher Channel. -- Kan kreve en Internett forbindelse avhengig av hvilken inngangspunkt du velger. - -### [**Fortsett med Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/no_NO/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/no_NO/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 711a8a4e4a6..00000000000 --- a/translations/no_NO/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Browser Exploit {docsify-ignore} - -For å installere CFW, må vi først starte Homebrew Launcher gjennom nettleseren. Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Start nettleseren og gå til `wiiuexploit.xyz`. -1. Klikk på `Run Homebrew Launcher!`. Konsollen skal starte Homebrew Launcher. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/no_NO/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index 840aa5cb938..00000000000 --- a/translations/no_NO/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Velg ett DS VC-spill - -Det første du må velge er hvilket DS Virtual Console ("VC") spill du skal kjøpe. -Vær oppmerksom på at spillet du installerer Haxchi/CBHC over ikke vil kunne spilles lenger før du avinstallerer Haxchi/CBHC og så installerer spillet på nytt fra eShop. - -### Kompatible DS VC spill - -?> Hvis du har en europeisk regionkonsoll, er det en mulighet for at du allerede har Dr. Kawashimas Brain Training: How Old is Your Brain? gratis. Gå til [eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) og sjekk om du har spillet. - -Hvis du ikke eier noen av spillene nedenunder, så kan du ikke bruke denne metoden siden 3DS og Wii U eShop er stengt ned. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/no_NO/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/no_NO/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index fbc67f65200..00000000000 --- a/translations/no_NO/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Installere Homebrew Launcher Channel {docsify-ignore} - -Denne siden vil hjelpe deg med å installere Homebrew Launcher Channel som et program direkte på Wii U menyen for enkel tilgang. - -### Instruksjoner {docsify-ignore} - -?> Å installere Homebrew Launcher Channel er valgfritt siden du kan åpne den ved å holde inne A knappen mens du starter Haxchi. - -1. Slå på Wii U konsollen. -1. Start Haxchi Wii U menyen. Dette vil åpne Wii U menyen med CFW aktivert. -1. Start Haxchi igjen mens du holder inne A knappen. Dette vil sende deg til Homebrew Launcher. -1. Start WUP Installer GX2 appen. -1. Bruk touch-skjermen for å velge `Homebrew Launcher Channel`. Trykk `Install` og bekreft med `Yes`. -1. Velg NAND som installasjonsdestinasjon. Dette vil starte installasjonen av Homebrew Launcher-kanalen til Wii U menyen. -1. Når prosessen er ferdig, trykk på Home-knappen til du er tilbake på Wii U menyen. -1. Du har nå installert Homebrew Launcher Channel og kan finne den på Wii U Menyen. Husk at du må starte CFW etter hver omstart for å kunne åpne denne kanalen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/no_NO/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index a07e0cd37db..00000000000 --- a/translations/no_NO/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Bruke CFW {docsify-ignore} - -Nå som du har en NAND backup i tilfelle noe går galt senere, kan du kjøre CFW på systemet ditt. - -I motsetning til systemer som DSi, Wii eller 3DS, er Wii U CFW midlertidig. Dette betyr at så snart systemet starter på nytt, vil du miste CFW og må følge disse instruksjonene igjen. Det trenger du ikke ved å installere CBHC på en Haxchi CFW installasjon. - -### Instruksjoner {docsify-ignore} - -?> Hvis du ikke får installert Haxchi, prøv å avinstallere og laste ned DS VC spillet fra eShop på nytt og sørg for at det blir installert i NAND. - -1. Ta SD-kortet ut av PCen og sett det inn i Wii U konsollen. -1. Hvis du ikke har gjort det enda, last ned DS VC spillet du valgte fra eShop. -1. Start Homebrew Launcher på Wii U konsollen din som [forklart tidligere](browser-exploit). -1. Kjør Haxchi appen. -1. Bruk D-padden til å flytte markøren til spillet du ønsker å installere Haxchi over og trykk på A knappen for å installere den. -1. Når installasjonen er ferdig, vil konsollen gå tilbake til Wii U menyen. Der vil du se spillet ditt erstattet med et Haxchi ikon. -1. Kjør Haxchi. Dette vil starte konsollen på nytt og aktivere CFW. -1. Du må kjøre Haxchi etter hver omstart for å aktivere CFW. -1. Du kan nå koble til eventuelle USB-enheter du hadde tilkoblet, før du startet guiden. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/haxchi/nand-backup.md b/translations/no_NO/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 0ea8309dd52..00000000000 --- a/translations/no_NO/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Lage en NAND backup{docsify-ignore} - -Hvis noe går galt senere i prosessen og Wii U konsollen "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -### Instruksjoner {docsify-ignore} - -?> Størrelsen på Wii U NAND er (avhengig av modellen) enten 8gb eller 32gb. På grunn av dette så må du bruke ett SD-kort som er større enn NAND størrelsen. Hvis SD-kortet ditt ikke er stort nok, så kan du hoppe over `MLC` delen hvor spilldata og saves er lagret, den er ikke nødvendig for å gjenopprette de fleste bricke-tilfellene. - -?> Å gjenopprette en NAND backup på Wii U konsollen krever litt kunskap om maskinvare og loddeferdigheter av mikro elektronikk.
Men å lage en NAND backup er **alltid** lurt, så du burde ikke hoppe over det.
NAND backupen din er unik for ditt system. backups fra andre konsoller vil **ikke** fungere. - -1. Gå til Homebrew Launcher og kjør `Wii U NAND Dumper` appen. -1. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Trykk på A knappen for å starte dumpingprosessen. -1. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -1. For å forsikre deg om at du ikke mister filene, kopier `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp. ` og hvis du valgte å gå for full sikkerhetskopi, `hver mlc.bin.part` til PC'en din. -1. Slett filene fra SD-kortet for å frigjøre plass. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/no_NO/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index 6de27b989ec..00000000000 --- a/translations/no_NO/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Forberede SD-kortet {docsify-ignore} - -Her vil vi plassere de nødvendige CFW-filene og noen ekstra homebrew filer på SD-kortet. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "Allocation unit size" for å formatere den. **Ikke** sett navnet på SD kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -### Dette Trenger Du {docsify-ignore} - -- Siste utgave av [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Du må laste ned `payload.zip` filen. -- [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) Versjon 1.4. - - Du må laste ned `homebrew_launcher.v.1.4.zip`. -- Siste utgave av [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Siste utgave av [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Du må laste ned `homebrew_launcher_channel.v2.1_fix.zip` filen. -- Siste utgave av [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Siste utgave av [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Du må laste ned `wiiu-extracttosd.zip` filen. -- Siste utgave av [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- Siste utgave av SaveMii Mod. - -### Instruksjoner {docsify-ignore} - -?> **Merk** info.json og manifest.Install filene er ikke nødvendig for modifiseringsprosessen og kan slettes. - -1. Sett SD-kortet ditt i PC'en din. -1. Opprett en mappe med navnet `install` på roten av SD-kortet. -1. Pakk ut `homebrew_launcher_channel.v2.1_fix.zip` til `install` mappen. -1. Pakk ut `haxchi.zip` til roten av SD-kortet. -1. Pakk ut `wup_installer_gx2.zip` til roten av SD-kortet. -1. Pakk ut `nanddumper.zip` til roten av SD-kortet. -1. Pakk ut `wiiu-extracttosd.zip` til roten av SD-kortet. -1. Pakk ut `homebrew_launcher.v.1.4.zip` til roten av SD-kortet. -1. Pakk ut `savemii_mod.zip` til roten av SD-kortet. -1. Kopier `payload.elf` fila fra `payload.zip` til `wiiu` mappen på SD-kortet. ----------- - -### SD-kort oppsett {docsify-ignore} - -
-Klikk her for å se hvordan SD-kort oppsettet skal se ut. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Alle andre apper som disc2app, nanddumper, etc. skal være her også) - ┗ 📜payload.elf -``` - -
diff --git a/translations/no_NO/docs/user-guide/archive/haxchi/sidebar.md b/translations/no_NO/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index 969aab53106..00000000000 --- a/translations/no_NO/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Hjemmesiden](../../introduction) -- [Velg CFW](../cfw-choice) -- [Velg ett DS VC-spill](ds-vc-choice) -- [Forberede SD-kortet](sd-preparation) -- [Nettleser Exploit](browser-exploit) -- [Lage en sikkerhetskopi av NAND](nand-backup) -- [Bruke CFW](launching-cfw) -- [Installere Homebrew Channel](installing-hblc) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../../donations) -- [Om denne guiden](../../about) \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/no_NO/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 6ff9c36fe46..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Velg Ett Inngangspunkt - -!> **METODENE BESKREVET PÅ DENNE SIDEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../introduction)** - -## Online Exploit - -- Dette krever Internett-tilgang hver gang du vil starte Homebrew Launcher. - -### [**Fortsett med Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Dette krever Internett-tilgang for installasjonsprosessen, men kan brukes offline etter den er satt opp. -- Dette krever at du endrer en systemfil. - -### [**Fortsett med Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/no_NO/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index bd9f29eaf12..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -For å installere CFW, må vi først starte Homebrew Launcher gjennom nettleseren. Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Start nettleseren og gå til `wiiuexploit.xyz`. -1. Klikk på `Run Homebrew Launcher!`. Konsollen skal starte Homebrew Launcher. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/no_NO/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index 65e19ff2aa8..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../../introduction)** - -## Nettleser Modifisering {docsify-ignore} - -Nå som du har en NAND backup i tilfelle noe går galt senere, kan du installere Indexiine på systemet ditt. - -?> Om du ikke har satt SD-kortet tilbake i Wii U konsollen etter at du har kopiert NAND sikkerhetskopien til en PC, gjør det nå. - - -### Instruksjoner {docsify-ignore} - -1. Slå på Wii U konsollen. -1. Start nettleseren og gå til nettsiden `wiiuexploit.xyz`. -1. Klikk på `Run Homebrew Launcher!`. Konsollen skal starte Homebrew Launcher. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. -1. Gå til Homebrew Launcher og kjør `Indexiine Installer` appen. -1. Trykk på A knappen for å installere Indexiine. -1. Når prosessen er ferdig, lukk Homebrew Launcher for å gå tilbake til Wii U menyen. - -Nettleseren vil nå sende deg rett til Homebrew Launcher selv om du ikke har internett tilkobling. Hvis du vil besøke et annet nettsted, kan du søke før Indexiine starter exploit'en. - -?> Hvis du ønsker å avinstallere Indexiine, se [Avinstallere Indexiine](../../../uninstall-indexiine) siden diff --git a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/no_NO/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index 27b58f963e4..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../../introduction)** - -## Bruke CFW {docsify-ignore} - -I motsetning til systemer som DSi, Wii eller 3DS, er Wii U CFW midlertidig. Dette betyr at så snart systemet starter på nytt, vil du miste CFW og må følge disse instruksjonene igjen. Det trenger du ikke ved å installere CBHC på en Haxchi CFW installasjon. - -### Instruksjoner {docsify-ignore} - -1. Start Homebrew Launcher ved å åpne nettleseren. -1. Kjør Mocha appen. -1. Dette tar deg tilbake til Homebrew Launcher med CFW aktivert. -1. Når du starter konsollen på nytt, må du gå gjennom trinnene på nytt for å starte CFW igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/no_NO/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index a6ef42a86c9..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../../introduction)** - -## Lage en NAND backup{docsify-ignore} - -Hvis noe går galt senere i prosessen og Wii U konsollen "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -### Instruksjoner {docsify-ignore} - -?> Størrelsen på Wii U NAND er (avhengig av modellen) enten 8gb eller 32gb. På grunn av dette så må du bruke ett SD-kort som er større enn NAND størrelsen. Hvis SD-kortet ditt ikke er stort nok, så kan du hoppe over `MLC` delen hvor spilldata og saves er lagret, den er ikke nødvendig for å gjenopprette de fleste bricke-tilfellene. - -?> Å gjenopprette en NAND backup på Wii U konsollen krever litt kunskap om maskinvare og loddeferdigheter av mikro elektronikk.
Men å lage en NAND backup er **alltid** lurt, så du burde ikke hoppe over det.
NAND backupen din er unik for ditt system. backups fra andre konsoller vil **ikke** fungere. - -1. Gå til Homebrew Launcher og kjør `Wii U NAND Dumper` appen. -1. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Trykk på A knappen for å starte dumpingprosessen. -1. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -1. For å forsikre deg om at du ikke mister filene, kopier `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp. ` og hvis du valgte å gå for full sikkerhetskopi, `hver mlc.bin.part` til PC'en din. -1. Slett filene fra SD-kortet for å frigjøre plass. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/no_NO/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index 603ed86d757..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../../introduction)** - -## Forberede SD-kortet {docsify-ignore} - -Her vil vi plassere de nødvendige CFW-filene og noen ekstra homebrew filer på SD-kortet. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "Allocation unit size" for å formatere den. **Ikke** sett navnet på SD kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -### Dette Trenger Du {docsify-ignore} - -- Mocha config fila. -- Siste utgave av [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Du må laste ned `payload.zip` filen. -- [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) Versjon 1.4. - - Du må laste ned `homebrew_launcher.v.1.4.zip`. -- Siste utgave av [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Siste utgave av [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Siste utgave av [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Du må laste ned `wiiu-extracttosd.zip` filen. -- Siste utgave av [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- Siste utgave av SaveMii Mod. -- Siste utgave av [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instruksjoner {docsify-ignore} - -?> **Merk** info.json og manifest.Install filene er ikke nødvendig for modifiseringsprosessen og kan slettes. - -1. Sett SD-kortet ditt i PC'en din. -1. Pakk ut `wup_installer_gx2.zip` til roten av SD-kortet. -1. Pakk ut `nanddumper.zip` til roten av SD-kortet. -1. Pakk ut `wiiu-extracttosd.zip` til roten av SD-kortet. -1. Pakk ut `homebrew_launcher.v.1.4.zip` til roten av SD-kortet. -1. Pakk ut `mocha.zip` til roten av SD-kortet. -1. Pakk ut `indexiine-installer.zip` til roten av SD-kortet. -1. Pakk ut `savemii_mod.zip` til roten av SD-kortet. -1. Kopier `config.ini` fila til `/wiiu/apps/mocha` mappen på SD-kortet. -1. Kopier `payload.elf` fila fra `payload.zip` til `wiiu` mappen på SD kortet. ----------- - -### SD-kort oppsett {docsify-ignore} - -
-Klikk her for å se hvordan SD-kort oppsettet skal se ut. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Alle abdre apper som disc2app, nanddumper, etc. skal være her også) - ┗ 📜payload.elf -``` - -
diff --git a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/no_NO/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index c4846f5ad18..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Hjemmesiden](../../../introduction) -- [Velg CFW](../../cfw-choice) -- [Velg et Entrypoint](../entrypoint-choice) -- [Forberede SD-kortet](sd-preparation) -- [Nettleser Exploit](browser-exploit) -- [Lage en sikkerhetskopi av NAND](nand-backup) -- [Nettleser Modifisering](browser-modding) -- [Bruke CFW](launching-cfw) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../../../donations) -- [Om denne guiden](../../../about) \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index b4cda171d00..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -For å installere CFW, må vi først starte Homebrew Launcher gjennom nettleseren. Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Start nettleseren og gå til `wiiuexploit.xyz`. -1. Klikk på `Run Homebrew Launcher!`. Konsollen skal starte Homebrew Launcher. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 685bae928ab..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../../introduction)** - -## Bruke CFW {docsify-ignore} - -Nå som du har en NAND backup i tilfelle noe går galt senere, kan du kjøre CFW på systemet ditt. - -I motsetning til systemer som DSi, Wii eller 3DS, er Wii U CFW midlertidig. Dette betyr at så snart systemet starter på nytt, vil du miste CFW og må følge disse instruksjonene igjen. Det trenger du ikke ved å installere CBHC på en Haxchi CFW installasjon. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PCen og sett det inn i Wii U konsollen. -1. Start Homebrew Launcher på Wii U konsollen din som [forklart tidligere](browser-exploit). -1. Kjør Mocha appen. -1. Dette tar deg tilbake til Homebrew Launcher med CFW aktivert. -1. Når du starter konsollen på nytt, må du gå gjennom trinnene på nytt for å starte CFW igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index d5c613cefd8..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../../introduction)** - -## Lage en NAND backup{docsify-ignore} - -Hvis noe går galt senere i prosessen og Wii U konsollen "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -### Instruksjoner {docsify-ignore} - -?> Størrelsen på Wii U NAND er (avhengig av modellen) enten 8gb eller 32gb. På grunn av dette så må du bruke ett SD-kort som er større enn NAND størrelsen. Hvis SD-kortet ditt ikke er stort nok, så kan du hoppe over `MLC` delen hvor spilldata og saves er lagret, den er ikke nødvendig for å gjenopprette de fleste bricke-tilfellene. - -?> Å gjenopprette en NAND backup på Wii U konsollen krever litt kunskap om maskinvare og loddeferdigheter av mikro elektronikk.
Men å lage en NAND backup er **alltid** lurt, så du burde ikke hoppe over det.
NAND backupen din er unik for ditt system. backups fra andre konsoller vil **ikke** fungere. - -1. Gå til Homebrew Launcher og kjør `Wii U NAND Dumper` appen. -1. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Trykk på A knappen for å starte dumpingprosessen. -1. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -1. For å forsikre deg om at du ikke mister filene, kopier `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp. ` og hvis du valgte å gå for full sikkerhetskopi, `hver mlc.bin.part` til PC'en din. -1. Slett filene fra SD-kortet for å frigjøre plass. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index bc4ab7248f1..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **DENNE METODEN ER IKKE LENGER STØTTET** -**OPPDATERTE METODER ER TILGJENGELIG [HER](../../../introduction)** - -## Forberede SD-kortet {docsify-ignore} - -Her vil vi plassere de nødvendige CFW-filene og noen ekstra homebrew filer på SD-kortet. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "Allocation unit size" for å formatere den. **Ikke** sett navnet på SD kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -### Dette Trenger Du {docsify-ignore} - -- Mocha config fila. -- Siste utgave av [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Du må laste ned `payload.zip` filen. -- [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) Versjon 1.4. - - Du må laste ned `homebrew_launcher.v.1.4.zip`. -- Siste utgave av [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Siste utgave av [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Siste utgave av [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Du må laste ned `wiiu-extracttosd.zip` filen. -- Siste utgave av [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- Siste utgave av SaveMii Mod. - -### Instruksjoner {docsify-ignore} - -?> **Merk** info.json og manifest.Install filene er ikke nødvendig for modifiseringsprosessen og kan slettes. - -1. Sett SD-kortet ditt i PC'en din. -1. Pakk ut `wup_installer_gx2.zip` til roten av SD-kortet. -1. Pakk ut `nanddumper.zip` til roten av SD-kortet. -1. Pakk ut `wiiu-extracttosd.zip` til roten av SD-kortet. -1. Pakk ut `homebrew_launcher.v.1.4.zip` til roten av SD-kortet. -1. Pakk ut `mocha.zip` til roten av SD-kortet. -1. Pakk ut `savemii_mod.zip` til roten av SD-kortet. -1. Kopier `config.ini` fila til `/wiiu/apps/mocha` mappen på SD-kortet. -1. Kopier `payload.elf` fila fra `payload.zip` til `wiiu` mappen på SD-kortet. ----------- - -### SD-kort oppsett {docsify-ignore} - -
-Klikk her for å se hvordan SD-kort oppsettet skal se ut. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Alle abdre apper som disc2app, nanddumper, etc. skal være her også) - ┗ 📜payload.elf -``` - -
diff --git a/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index e294c9adbbe..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Hjemmesiden](../../../introduction) -- [Velg CFW](../../cfw-choice) -- [Velg et Entrypoint](../entrypoint-choice) -- [Forberede SD-kortet](sd-preparation) -- [Nettleser Exploit](browser-exploit) -- [Lage en sikkerhetskopi av NAND](nand-backup) -- [Bruke CFW](launching-cfw) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../../../donations) -- [Om denne guiden](../../../about) \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/mocha/sidebar.md b/translations/no_NO/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index 0c64d18e08a..00000000000 --- a/translations/no_NO/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Hjemmesiden](../../introduction) -- [Velg CFW](../cfw-choice) -- [Velg et Entrypoint](entrypoint-choice) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../../donations) -- [Om denne guiden](../../about) \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/sidebar.md b/translations/no_NO/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 556c0e6cefa..00000000000 --- a/translations/no_NO/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Hjemmesiden](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Utdaterte Metoder](cfw-choice) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../../donations) -- [Om denne guiden](../../about) -- **Personvern** -- [Retningslinjer for personvern](../../privacy-policy) diff --git a/translations/no_NO/docs/user-guide/archive/tiramisu/autoboot.md b/translations/no_NO/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index 9c074a00f54..00000000000 --- a/translations/no_NO/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Hver gang du vil kjøre Tiramisu så må du starte Health and Safety Information appen. Hvis du ønsker å starte Tiramisu automatisk ved oppstart, så kan du autoboote Health and Safety Information appen. - -### Instruksjoner - -1. Start konsollen for å komme inn i Wii U menu, kjør Health and Safety Information appen og hold X kanppen for å åpne Environment Loader menu. -1. Naviger lista ved å bruke D-Paden og velg `installer` environment, trykk A for å kjøre den. -1. Trykk A for å velge `Check`. -1. Velg `Boot options`. -1. Du vil bli spurt om du vil bytte boot title. Trykk A for å velge `Switch to PayloadLoader`. -1. Når prosessen er ferdig, trykk A for å slå av konsollen. -1. PayloadLoader vil nå kjøre automatisk når konsollen starter. - - For å endre "default boot title" hold Start (+) på Gamepaden mens konsollen slår seg på. Du kan ikke bytte boot title før du har satt en default environment først. - - Naviger lista ved å bruke D-Paden og velg hvilken tittel du vil autoboote inn i, så trykker du Y knappen for å sette det til autoboot tittel. - - Trykk på A for å starte den valgte tittelen. - diff --git a/translations/no_NO/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/no_NO/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index 246cf78101b..00000000000 --- a/translations/no_NO/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Nettleser Exploit - -Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner - -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Start nettleseren og gå til `wiiuexploit.xyz`. -1. Trykk `Run Exploit!` og hold B knappen inne intil du ser ett skjermbilde som sier `Please choose your payload:`, Dette er nødvendig for de neste stegene. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. - - Hvis du ser EnvironmentLoader, så holdt du ikke B knappen inne lenge nok. Prøv på nytt. - diff --git a/translations/no_NO/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/no_NO/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 382b34b9121..00000000000 --- a/translations/no_NO/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Fullføre installasjon - -Nå som PayloadLoader, Environment Loader og Tiramisu er installert, skal vi fullføre installasjonen. - -Vi skal gjøre så Tiramisu environmentet starter automatisk når konsollen autobooter Heath and Safety Information Appen (eller når du manuelt kjører det hvis du velger å ikke autoboote det) og velge Wii U menu som default samt skaffe ekstra homebrew apper. - -### Sette opp PayloadLoader, Environment Loader og Tiramisu - -1. Slå på Wii U konsollen. - - Environment Loader burde komme opp. -1. Ved å bruke D-Paden, naviger til `tiramisu` og trykk Y for å sette dette til default envrionment, så trykker du A for å kjøre Tiramisu. - - Det kan hende du får ett rødt advarselvindu som forteller deg at oppdateringer ikke er blokkert ordentlig. Trykk likevel A for å fortsette. Vi går gjennom hvordan man blokkerer oppdateringer i "Blokkere Systemoppdateringer" delen nedenfor. - - For å åpne Environment Loader i fremtiden, må du holde X mens Wii U konsollen slår seg på. -1. På Tiramisu Boot Selector, `Wii U Menu` burde allerede være valgt, trykk Y for å sette det til default autobooting option, så trykker du A for å komme inn i Wii U Menu. - - For å åpne Tiramisu Boot Selector i fremtiden, må du holde START (+) mens Wii U konsollen slår seg på. - -?> Når du har kommet inn i Tiramisu environment, kan du åpne Mii Maker appen når som helst for å komme inn i Homebrew Launcher.
Homebrew Launcher vil være tom for førstegangs oppsett. Følg resten av guiden for å installere apper i Homebrew Launcher.
For å gå tilbake til Mii Maker, trykk HOME knappen mens du er i Homebrew Launcher. - -### Blokkere Systemoppdateringer -Selv om Tiramisu's PayloadLoader allerede har en update block funksjon, så er det anbefalt å slette update mappen for være sikker på at systemet ikke oppdateres automatisk. Hvis du får ett rødt advarselvindu mens du starter opp i Tiramisu, så betyr det at update mappen fortsatt er i systemet og det er anbefalt å slette den med [denne guiden](../block-updates). - -### Ekstra Homebrew-apper - -- **SaveMii Mod WUT Port** er en homebrew app som lar deg styre Wii-U og vWii save filer. -- **Bloopair** er en Tiramisu modul som lar deg koble trådløst til de mest populære Bluetooth kontrollene. Se [denne siden](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for mer informasjon. -- **Homebrew Appstore** lar deg søke etter og laste ned homebrew apps direkte til Wii U konsollen. - -### Ekstra Homebrew Apper - Dette Trenger Du - -- Siste utgave av [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- Siste utgave av [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` fra [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Ekstra Homebrew Apper - Pakke ut Filer to SD-Kortet - -1. Pakk ut `SaveMiiModWUTPort.zip` fila til roten av SD-kortet. -1. Pakk ut `Bloopair_vX.X.X.zip` fila. - Kopier `30_bloopair.rpx` til `wiiu/environments/tiramisu/modules/setup/` mappen på roten av SD-kortet ditt. - Kopier `wiiu` mappa til roten av SD-kortet ditt. -1. Pakk ut `wiiu-extracttosd.zip` til roten av SD-kortet. diff --git a/translations/no_NO/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/no_NO/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index f7a77733030..00000000000 --- a/translations/no_NO/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installere PayloadLoader - -Nå som du har en NAND backup i tilfelle noe går galt senere, kan du installere PayloadLoader på Wii U konsollen. - -Å installere PayloadLoader lar deg bruke Tiramisu ved å kjøre Health and Safety Information appen. - -!> En factory reset vil **ikke** fjerne en installert PayloadLoader. Følg [avinstallere PayloadLoader](../../uninstall-payloadloader) for å fjerne PayloadLoader. - -### Instruksjoner - -?> Hvis du allerede er i Tiramisu, start Wii U konsollen din på nytt før du kjører browser exploiten igjen. - -1. Ta SD-kortet ut av PCen og sett det inn i Wii U konsollen. -1. Kjør browser exploiten som [tidligere forklart](browser-exploit) men denne gangen, må du holde X knappen inne for å åpne Environment Loader menu. -1. Naviger lista ved å bruke D-Paden og velg `installer` environment, trykk A for å kjøre den. -1. Trykk A knappen for å skjekke om du kan installere PayloadLoader. - - Det burde nå stå at PayloadLoader kan installeres oppå Health and Safety Information appen. -1. Trykk A for å velge `Install / Update`. -1. Du vil bli spurt om du er sikker på at du vil installere PayloadLoader. Bruk D-Paden for å velge `Install` og trykk A. -1. Etter installasjonen er fullført, trykk A for å slå av konsollen. - -!> Hvis du ikke ønsker å autoboote Tiramisu på konsollen, kan du hoppe over `Autobooting Tiramisu` delen og gå rett til [Fullføre Installasjon](finalizing-setup). \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/no_NO/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 1b974142710..00000000000 --- a/translations/no_NO/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Lage en sikkerhetskopi av NAND - -Hvis noe går galt senere i prosessen og Wii U konsollen "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -### Instruksjoner - -?> Størrelsen på Wii U NAND er (avhengig av modellen) enten 8gb eller 32gb. På grunn av dette så må du bruke ett SD-kort som er større enn NAND størrelsen. Hvis SD-kortet ditt ikke er stort nok, så kan du hoppe over `MLC` delen hvor spilldata og saves er lagret, den er ikke nødvendig for å gjenopprette de fleste bricke-tilfellene. - -?> Å gjenopprette en NAND backup på Wii U konsollen krever litt kunskap om maskinvare og loddeferdigheter av mikro elektronikk.
Men å lage en NAND backup er **alltid** lurt, så du burde ikke hoppe over det.
NAND backupen din er unik for ditt system. backups fra andre konsoller vil **ikke** fungere. - -1. Naviger til `nanddumper` ved å bruke GamePaden og trykk A for å kjøre den. -1. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Trykk på A knappen for å starte dumpingprosessen. -1. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -1. Filene vil vises på roten av SD-kortet. -1. For å forsikre deg om at du ikke mister filene, kopier `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp. ` (og hvis du valgte å gå for full sikkerhetskopi, `hver mlc.bin.part`) til PC'en din. -1. Slett filene fra SD-kortet for å frigjøre plass. - -?> **Hvis PayloadLoader allerede er installert over Health and Safety Information appen og konsollen din allerede autobooter det, trenger du ikke følge denne guiden mer.** diff --git a/translations/no_NO/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/no_NO/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index 21554e44a58..00000000000 --- a/translations/no_NO/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Forberede SD-kortet - -Her vil vi plassere de nødvendige CFW-filene og noen ekstra homebrew filer på SD-kortet. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "Allocation unit size" for å formatere den.
**Ikke** sett navnet på SD-kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -### Dette trenger du - -- Nyeste utgave av [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Klikk på `Download Tiramisu`. -- Nyeste utgave av [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - Du må laste ned `01_sigpatches.rpx` filen. - -### Instruksjoner - -1. Sett SD-kortet ditt i PC'en din. -1. **Pakk ut** Tiramisu *`.zip`* fila til roten av SD-kortet. -1. Kopier `01_sigpatches.rpx` fila til `/wiiu/environments/tiramisu/modules/setup` på SD-kortet. - -?> Hvis pc'en din spør deg om å erstatte eksisterende filer på SD-kortet, skal du trykke ja. - - Hvis du bruker en Mac, må du velge `Merge` i stedet for å erstatte. - ----------- - -### SD-kort oppsett {docsify-ignore} - -
-Klikk her for å se hvordan SD-kort oppsettet skal se ut. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/no_NO/docs/user-guide/archive/tiramisu/sidebar.md b/translations/no_NO/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 7db7cbd17f3..00000000000 --- a/translations/no_NO/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Hjemmesiden](../../introduction) -- [Forberede SD-kortet](sd-preparation) -- [Nettleser Exploit](browser-exploit) -- [Lage en sikkerhetskopi av NAND](nand-backup) -- [Installere PayloadLoader](installing-payloadloader) -- [Autoboote Tiramisu](autoboot) -- [Fullføre installasjon](finalizing-setup) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../donations) -- [Om denne guiden](../about) diff --git a/translations/no_NO/docs/user-guide/archive/vwii/browser-exploit.md b/translations/no_NO/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index f7a9032ae78..00000000000 --- a/translations/no_NO/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Utnytte en Exploit ---- -For å installere Homebrew Channel, må vi først lage en NAND backup og ha muligheten til å kjøre Homebrew Launcher gjennom en exploit, sånn som Browser Exploit. - -Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner {docsify-ignore} - -1. Velg ut og kjør en exploit: - - Hvis du aldri har kjørt homebrew før, så vil "kjør exploit" si at du må kjøre Browser Exploit. For å kjøre Browser Exploit så må du kjøre Nettleseren på konsollen og gå til `wiiuexploit.xyz`, og klikke på `Run Exploit!` - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. - - - Hvis du coldbooter inn i PayloadLoader, så vil "kjør exploit" si at du må slå på konsollen. - - - Hvis du kjører PayloadLoader via Health & Safety Information appen, så vil "kjør exploit" si at du må kjøre Health & Safety Information appen. - -1. Imens du kjører din valgte exploit, hold enten B knappen (hvis du følger `NAND Backup` seksjonen) eller X knappen (hvis du følger `Installing the Homebrew Channel` seksjonen). diff --git a/translations/no_NO/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/no_NO/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 2a09ec83619..00000000000 --- a/translations/no_NO/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - -## Fullføre installasjon - -Nå som de nødvendige cIOSes og IOS80 patchene er blitt lagt inn, kan vi nå til å fullføre oppsettet. - -### Ekstra Homebrew-apper - -- **SaveGame Manager GX** lar deg ta backup av, og erstatte saves og Miis, spesielt saves som ellers ikke kan kopieres. -- **Nintendont** er en virtuell maskin som lar deg spille Gamecube spill. -- **Open Shop Channel** er en appstore hvor du kan laste ned flere apper. - -### Ekstra Homebrew Apper - Dette Trenger Du - -- Siste utgave av [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- `loader.dol`, `meta.xml` og `icon.png` fra [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- `Homebrew Browser.zip` fra [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Ekstra Homebrew Apper - Pakke ut Filer to SD-Kortet - -1. Pakk ut og kopier innholdet fra `SaveGame_Manager_GX.zip` til roten av SD-kortet. -2. Følg instruksjonene i linken for å kopiere Nintendont, scroll nedover. -3. Pakk ut og kopier innholdet i `homebrew_browser.zip` til roten av SD-kortet. - -### USB Loaders - -for å spille Wii spill backups, så trenger du en USB loader. Det er 2 populære loaders som heter WiiFlow Lite og USB Loader GX. Du finner begge på [denne siden](https://wii.hacks.guide/wii-loaders). - -### Installere Priiloader - -Jepp, Priiloader virker nå også i vWii! For å installere det kan du følge guiden på [denne siden](https://wii.hacks.guide/priiloader). - -!> Priiloader versjoner før 0.10.0 fungerer ikke med vWii. Priiloader versjoner før 0.8.2 vil bricke vWii. diff --git a/translations/no_NO/docs/user-guide/archive/vwii/installing-cioses.md b/translations/no_NO/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index 850b036faae..00000000000 --- a/translations/no_NO/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - -## Installerer cIOS'er - -1. Slå på Wii U konsollen og start vWii. -2. Start Homebrew Channel. -3. Kjør d2x cIOS Installer. -4. Velg følgende instillinger: - - Velg cIOS: `d2x-v11-beta1-vWii` - - Velg cIOS base: `56` - - Velg cIOS slot: `249` -5. Trykk på `A` knappen for å installere dem. -6. Velg følgende instillinger: - - Velg cIOS: `d2x-v11-beta1-vWii` - - Velg cIOS base: `57` - - Velg cIOS slot: `250` -7. Trykk på `A` knappen for å installere dem. -8. Velg følgende instillinger: - - Velg cIOS: `d2x-v11-beta1-vWii` - - Velg cIOS base: `58` - - Velg cIOS slot: `251` -9. Trykk på `A` knappen for å installere dem. -10. Trykk på `B` knappen for å avslutte. - -!> Hvis du bare får `d2x-v6` eller `d2x-v11-beta1`, last ned appen på nytt og/eller sørg for at SD-kortet er ulåst. diff --git a/translations/no_NO/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/no_NO/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index 4de3dbf58ce..00000000000 --- a/translations/no_NO/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - -## Installere Homebrew Channel - -1. Boot inn i [Aroma](browser-exploit). -2. Kjør `vWii Compat Installer` fra Wii U Menyen. -3. Trykk `A` for å installere Homebrew Channel og vent til du ser `Install succeeded`. Så trykker du HOME-knappen for å gå tilbake til Wii U menu. -4. Start vWii (Wii menu ikonet). - - Hvis installasjonen ble ferdig, bør du se Homebrew Channel kanalen i Wii Menu. diff --git a/translations/no_NO/docs/user-guide/archive/vwii/nand-backup.md b/translations/no_NO/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index fb7df06a0a2..00000000000 --- a/translations/no_NO/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - -## NAND Backup - -I tilfelle noe går galt og du ender opp med å bricke vWii, så kan du fikse det ved å restaurere en tidligere NAND backup, eller så kan du [installere hele vWii på nytt](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> Hvis du nylig har laget en NAND sikkerhetskopi som inneholder SLCCMPT og OTP, kan du hoppe over dette trinnet. - -1. Kjør [Wii U NAND Dumper](browser-exploit). -2. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Trykk på A knappen for å starte dumpingprosessen. -4. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -5. For å være sikker på at du ikke mister filene, kopier `slccmpt.bin` og, `otp.bin`, (og hvis du velger å ta en full backup, `seeprom.bin`, `slc.bin`, og alle `mlc.bin.part` filene) til pc'en din. -6. Slett filene fra SD-kortet for å frigjøre plass. -7. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. diff --git a/translations/no_NO/docs/user-guide/archive/vwii/patching-ios80.md b/translations/no_NO/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index e46d2d285a5..00000000000 --- a/translations/no_NO/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - -## Patche IOS 80 (valgfritt) - -Å patche IOS 80 lar deg bruke custom channels på SD-kortet, inkludert wad filer. Det er imidlertid ikke nødvendig. - -!> Hvis Wii U konsollen din slår seg av mens du patcher IOS 80, vil vWii bli "bricket". Dette kan du fikse ved å enten pakke ut IOS 80 fila fra NAND backupen din og erstatte den over FTP eller ved å [installere IOS 80 på nytt](../../recover-vwii-ioses-channels). - -1. Kjør Patched IOS 80 Installer for vWii. -2. Les advarselen og vent 30 sekunder. -3. Trykk en knapp for å installere. -4. Vent til det står IOS80 Installation is complete!. -5. Trykk en knapp for å avslutte. - -!> Det er stor sjangse for å bricke vWii hvis man installerer en custom System Menu og du bør alltid ha en backup av systemet før du prøver å installerer en, men hvis du installerer det riktig så vil det ikke være noen risiko. - -!> Installering av IOS (inkludert TED IOS'er) eller wads formattert for den originale Wii'en vil "bricke" vWii'en din. WiiWare wads er greit, men noen må konverteres for å fungere. diff --git a/translations/no_NO/docs/user-guide/archive/vwii/sd-preparation.md b/translations/no_NO/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 6ad1da4b965..00000000000 --- a/translations/no_NO/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - ---- - -## SD Forberedelser - -Denne siden vil hjelpe deg med å modifisere vWii. - -Vi starter med å plassere Homebrew filene du trenger på SD-kortet ditt. - -?> **Merk** -SD-kortet må være FAT32 formatert. Hvis SD-kortet ikke er FAT32 formatert, bruk [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) Allocation unit size til å formatere det riktig. **Ikke** sett navnet på SD-kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -?> Hvis du har hacket Wii U'en din tidligere, kan du bruke det samme SD-kortet i denne prosessen. - -?> I motsetning til Wii U homebrew, vWii apper skal inn i en separat `apps` mappe på roten av SD-kortet. Compat Installer er den **eneste** Wii U appen her. - -### Dette trenger du - -- Siste utgave av [Aroma for your café](https://aroma.foryour.cafe). - - Trykk på `Download Payloads` og `Download Base Aroma`. - - Les gjennom trinnene og marker checkboksene. - - Hvis du allerede har installert Aroma, trenger du ikke å laste den ned på nytt. -- Siste utgave av [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- Patched IOS 80 Installer for vWii. ([Kilde](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- d2x cIOS Installer. - -## Instruksjoner - -1. Sett SD-kortet ditt i PC'en din. -2. Pakk ut `apps` mappen fra `Patched_IOS80_Installer_for_vWii.zip` til roten av SD kortet. -3. Pakk ut `d2x-cios-installer` fra `d2x_cIOS_Installer.zip` fila til apps mappen på roten av SD-kortet. -4. Pakk ut Base Aroma og payloads `.zip` filene til roten av SD-kortet. -5. Pakk ut `CompatTitleInstaller.zip` fila til roten av SD-kortet. -6. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. diff --git a/translations/no_NO/docs/user-guide/archive/vwii/sidebar.md b/translations/no_NO/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/no_NO/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/no_NO/docs/user-guide/aroma/autoboot.md b/translations/no_NO/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index 524d6b146da..00000000000 --- a/translations/no_NO/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autoboote Aroma - -Hver gang du vil kjøre Aroma så må du starte Health and Safety Information appen. Hvis du ønsker å starte Aroma automatisk ved oppstart, så kan du autoboote Health and Safety Information appen. - -Hvis du ikke ønsker å autoboote Aroma, så kan du hoppe over de neste stegene og gå til Sette Opp PayloadLoader seksjonen nedeunder. - -### Instruksjoner - -1. Slå på konsollen og boot inn i Wii U Menyen, så kjører du Health and Safety Information appen. -2. Trykk A for å starte `aroma` environmentet. -3. Trykk A for å starte Wii U Menyen. -4. Når du er inne i Wii U Menyen, start PayloadLoader Installer. -5. Trykk A for å velge `Check`. -6. Velg `Boot options`. -7. Du vil bli spurt om du vil bytte boot title. Trykk A for å velge `Switch to PayloadLoader`. -8. Når prosessen er ferdig, trykk A for å slå av konsollen. -9. PayloadLoader vil nå kjøre automatisk når konsollen starter. - -### Sette opp PayloadLoader, Environment Loader og Aroma - -Nå skal vi gjøre så Aroma environment starter automatisk når konsollen starter Health and Safety Information appen, og velger Wii U Menyen som standard oppstart. - -1. Start EnvironmentLoader. - - Hvis du autobooter PayloadLoader, så trenger du bare å slå på Wii U'en. - - Hvis du hoppet over autobooting trinnene, starter du bare Health and Safety Information appen. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - For å starte Environment Loader senere, trenger du bare å holde X inne mens Wii U'en starter opp, eller åpner Health and Safety Information appen. - -3. På Aroma Boot Selector, `Wii U Menyen` burde allerede være valgt, trykk Y for å sette det til default autobooting option, så trykker du A for å komme inn i Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma vil nå starte opp hver gang du slår på konsollen (eller starter Health and Safety) og går rett inn i Wii U Menyen. - - For å starte Aroma Boot Selector senere, trenger du bare å holde START (+) inne mens Wii U'en starter opp, eller åpner Health and Safety Information appen. - - Naviger lista ved å bruke D-Paden og velg hvilken tittel du vil autoboote inn i, så trykker du Y knappen for å sette det til autoboot tittel. - - Trykk på A for å starte den valgte tittelen. diff --git a/translations/no_NO/docs/user-guide/aroma/browser-exploit.md b/translations/no_NO/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index be4c05c9b31..00000000000 --- a/translations/no_NO/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Nettleser Exploit - -Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner - -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -2. Start nettleseren og gå til `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt, [nullstill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. - - Hvis du ser EnvironmentLoader, så holdt du ikke B knappen inne lenge nok. Prøv på nytt. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/no_NO/docs/user-guide/aroma/finalizing-setup.md b/translations/no_NO/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index 2b3114cdce4..00000000000 --- a/translations/no_NO/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Fullføre installasjon - -Nå som PayloadLoader, Environment Loader og Aroma er installert, skal vi fullføre installasjonen. - -### Ekstra Homebrew-apper - -?> Alle Homebrew appene startes fra Wii U Menyen i Aroma. - -- **SaveMii Mod WUT Port** er en homebrew app som lar deg endre Wii-U og vWii save filer. -- **Bloopair** er en Aroma modul som lar deg koble trådløst til de mest populære Bluetooth kontrollene. Se [denne siden](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for mer informasjon. -- **Homebrew Appstore** lar deg søke etter og laste ned homebrew apps direkte til Wii U konsollen. - -### Ekstra Homebrew Apper - Dette Trenger Du - -- Siste utgave av [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` fra [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Ekstra Homebrew Apper - Pakke ut Filer to SD-Kortet - -1. Pakk ut `SaveMiiModWUTPort.zip` fila til roten av SD-kortet. -1. Pakk ut `wiiu-extracttosd.zip` til roten av SD-kortet. - -### Anbefalte Plugins - -| Navn | Beskrivelse | Installasjons Instruksjoner | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Kjører en FTP-server i bakgrunnen. | 1. Pakk ut `ftpiiu_vX_X.zip`.
2. Kopier `ftpiiu.wps` til `wiiu/environments/aroma/plugins` mappen på roten av SD-kortet. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Lar deg modde spill ved å omdirigere filer fra SD-kortet. | 1. Pakk ut `sdcafiine_vX_X_X.zip`.
2. Kopier `sdcafiine.wps` til `wiiu/environments/aroma/plugins` mappen på roten av SD-kortet. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Lar deg bruke mesteparten av populære Bluetooth kontrollere på konsollen. | 1. Pakk ut `Bloopair_vX.X.X.zip`.
2. Kopier `30_bloopair.rpx` til `wiiu/environments/aroma/modules/setup/` mappen på roten av SD-kortet.
3. Kopier `wiiu` mappen til roten av SD-kortet. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Lar deg ta skjermbilder og lagre dem direkte i SD-kortet. | 1. Pakk ut `screenshot_plugin_vX_X.zip`.
2. Kopier `screenshot.wps` til `wiiu/environments/aroma/plugins` mappen til roten av SD-kortet. | - -### Pretendo Network - -Pretendo er ett uoffisielt alternativ til Nintendo Network, som gir tilbake online funksjoner som er på vei til å gå bort. Den reaktiverer også Miiverse service, via sidestilling. Den offisielle guiden kan du lese gjennom [her](https://pretendo.network/docs/install/wiiu). - -### Boote Tiramisu (valgfritt) - -?> Tiramisu er arkivert, og Aroma har tatt over. Det blir ikke mer Homebrew utviklet for det, og tjenester som Pretendo har sluttet å støtte det. - -Derimot, hvis du finner ett behov for å fortsatt bruke Tiramisu, for eksempel, for å bruke eldre Homebrew apper, så kan du gjøre følgende: - -1. last ned nyeste utgave av [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Kopier `wiiu` mappen til roten av SD-kortet. - - Mappen burde merge med `wiiu` mappen hvis det ikke blir gjort automatisk. -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Start EnvironmentLoader. - - Hvis du autobooter inn i det, kan du gjøre dette ved å holde X inne mens konsollen slår seg på. - - Du trenger ikke installere PayloadLoader på nytt hvis du allerede har gjort det med Aroma. -1. Highlight `tiramisu` ved å bruke D-Padden. -1. Start Tiramisu ved å trykke A. -1. Start Wii U Menyen ved å trykke A. - - For å få konsollen til å autoboote Wii U Menyen mens den åpner Tiramisu environmentet, trykk Y. -1. Du kan starte Homebrew Launcher ved å kjøre Mii Maker appen. diff --git a/translations/no_NO/docs/user-guide/aroma/getting-started.md b/translations/no_NO/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index 7248c3d538c..00000000000 --- a/translations/no_NO/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma er ett work-in-progress environment og har tatt over for Tiramisu. - -### Hva er Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### Hva kan jeg gjøre med Aroma? - -For en detaljert oversikt, sjekk ut [denne bloggen](https://maschell.github.io/homebrew/2022/09/05/aroma.html). Her kommer det en kjapp oppsummering. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, i likhet med modules, kjører også i bakgrunnen. -De kan forbedre opplevelsen på konsollen ved å endre og tilby flere funksjoner. -Plugins kan konfigureres i configuration menu, spm man åpner ved å trykke en knappekombinasjon. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) er en ny måte å kjøre homebrew på. -Disse `.wuhb` filene inneholder hovedfilen og inkluderer både ikon og bannerbilder og ekstra innhold. -Med `homebrew_on_menu` plugin, kan WUHB filer kjøres direkte fra Wii U menu, akkurat som offisielle channels. - -### Hva er begrensningene? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. For å kjøre gamle homebrews må du starte Tiramisu environment. -Det går ikke lenger ann å kjøre homebrew gjennom Homebrew Launcher i Aroma. - -I tillegg til begrensningene nevnt ovenfor skal det bemerkes at Aroma fortsatt er en betaversjon. Ikke alt er testet ennå, og eventuelle ytterligere problemer kan bli oppdaget. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/no_NO/docs/user-guide/aroma/installing-payloadloader.md b/translations/no_NO/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index d57d6de47ef..00000000000 --- a/translations/no_NO/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installere PayloadLoader - -Nå som du har en NAND backup i tilfelle noe går galt senere, kan du installere PayloadLoader på Wii U konsollen. - -Å installere PayloadLoader lar deg bruke Aroma ved å kjøre Health and Safety Information appen. - -!> En factory reset vil **ikke** fjerne en installert PayloadLoader. Følg [Avinstallere PayloadLoader](../../uninstall-payloadloader) for å fjerne PayloadLoader. - -### Instruksjoner - -?> Hvis du allerede har startet opp i Aroma, kan du hoppe til trinn 5. - -1. Ta SD-kortet ut av PCen og sett det inn i Wii U konsollen. -2. Kjør browser exploiten som [tidligere forklart](browser-exploit) men denne gangen, må du holde X knappen inne for å åpne Environment Loader menu. -3. Trykk A for å starte `aroma` environmentet. - ![](../docs/assets/img/guide/EL.png) - - Du vil få en advarsel om at update mappen eksisterer. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Trykk A for å starte Wii U Menyen. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Trykk A knappen for å skjekke om du kan installere PayloadLoader. - - Det burde nå stå at PayloadLoader kan installeres oppå Health and Safety Information appen. -7. Trykk A for å velge `Install / Update`. -8. Du vil bli spurt om du er sikker på at du vil installere PayloadLoader. Bruk D-Paden for å velge `Install` og trykk A. -9. Etter installasjonen er fullført, trykk A for å slå av konsollen. diff --git a/translations/no_NO/docs/user-guide/aroma/nand-backup.md b/translations/no_NO/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 2f81334e532..00000000000 --- a/translations/no_NO/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Lage en sikkerhetskopi av NAND - -Hvis noe går galt senere i prosessen og Wii U konsollen "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -### Instruksjoner - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
Men å lage en NAND backup er **alltid** lurt, så du burde ikke hoppe over det.
NAND backupen din er unik for ditt system. Backups from other consoles **won't** work without the required knowledge. - -1. Naviger til `nanddumper` ved å bruke GamePaden og trykk A for å kjøre den. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Trykk på A knappen for å starte dumpingprosessen. -4. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/no_NO/docs/user-guide/aroma/sd-preparation.md b/translations/no_NO/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index 423a3a1d8c8..00000000000 --- a/translations/no_NO/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Forberede SD-kortet - -Vi starter med å plassere Aroma filene du trenger på SD-kortet ditt. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "allocation unit size" for å formatere den. -**Ikke** bytt navn på SD-kortet til `wiiu` for da vil ikke homebrew fungere. - -### Instruksjoner - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Sett SD-kortet ditt i PC'en din. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> Hvis pc'en din spør deg om å erstatte eksisterende filer på SD-kortet, skal du trykke ja. - -?> Hbid du bruker en Mac, må du velge `Merge` i stedet for å erstatte. Hvis ikke Merge alternativet kommer opp, trykk og hold inne `Option` tasten mens du flytter filene til roten av SD-kortet. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD-kort oppsett {docsify-ignore} - -
-Klikk her for å se hvordan SD-kort oppsettet skal se ut. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> Hvis du allerede har PayloadLoader installert, så kan du gå direkte til [Fullføre Installasjon](./finalizing-setup.md) diff --git a/translations/no_NO/docs/user-guide/aroma/sidebar.md b/translations/no_NO/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index 266df068782..00000000000 --- a/translations/no_NO/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Hjemmesiden](../introduction) -- [Kom i gang med Aroma](getting-started) -- [Forberede SD-kortet](sd-preparation) -- [Nettleser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installere PayloadLoader](installing-payloadloader) -- [Autoboote Aroma](autobooting) -- [Fullføre installasjon](finalizing-setup) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../donations) -- [Om denne guiden](../about) diff --git a/translations/no_NO/docs/user-guide/cbhc/browser-exploit.md b/translations/no_NO/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index 32f67e9a3da..00000000000 --- a/translations/no_NO/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -For å installere CFW, må vi først starte Homebrew Launcher gjennom nettleseren. Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Start nettleseren og gå til `wiiuexploit.xyz`. -1. Klikk på `Run Homebrew Launcher!`. Konsollen skal starte Homebrew Launcher. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/cbhc/ds-vc-choice.md b/translations/no_NO/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 672bb1e9492..00000000000 --- a/translations/no_NO/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Velg ett DS VC-spill - -Det første du må velge er hvilket DS Virtual Console ("VC") spill du skal kjøpe. -Vær oppmerksom på at spillet du installerer Haxchi/CBHC over ikke vil kunne spilles lenger før du avinstallerer Haxchi/CBHC og så installerer spillet på nytt fra eShop. - -### Kompatible DS VC spill - -?> Hvis du har en europeisk regionkonsoll, er det en mulighet for at du allerede har Dr. Kawashimas Brain Training: How Old is Your Brain? gratis. Gå til [eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) og sjekk om du har spillet. - -Hvis du ikke eier noen av spillene i listen, anbefaler vi å kjøpe Brain Age (Nord-Amerika) eller Brain Training (Europa) siden det for tiden er blandt den billigste gruppen med kompatible spill og er ett spill vi regner med det er minst interesse av å spille. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/no_NO/docs/user-guide/cbhc/installing-hblc.md b/translations/no_NO/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 61923bbad50..00000000000 --- a/translations/no_NO/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installere Homebrew Launcher Channel {docsify-ignore} - -Denne siden vil hjelpe deg med å installere Homebrew Launcher Channel som et program direkte på Wii U menyen for enkel tilgang. - -?> Denne siden gjelder bare for Haxchi og CBHC brukere. Homebrew Launcher Channel (den versjonen av Homebrew Channel du kjører fra Wii U Menu) vil **ikke** fungere med Mocha CFW! - -### Instruksjoner {docsify-ignore} - -1. Slå på Wii U konsollen. -1. Trykk på Home-knappen under `Autobooting...` vindu for å komme deg inn i oppstartsmenyen. -1. Velg `Boot Homebrew Launcher` for å starte Homebrew Launcher. -1. Start WUP Installer GX2 appen. -1. Bruk touch-skjermen for å velge `Homebrew Launcher Channel`. Trykk `Install` og bekreft med `Yes`. -1. Velg NAND som installasjonsdestinasjon. Dette vil starte installasjonen av Homebrew Launcher-kanalen til Wii U menyen. -1. Når prosessen er ferdig, trykk på Home-knappen til du er tilbake på Wii U menyen. -1. Du har nå installert Homebrew Launcher Channel og kan finne den på Wii U Menyen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/cbhc/launching-cfw.md b/translations/no_NO/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index cf9a2598a4b..00000000000 --- a/translations/no_NO/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Bruke CFW {docsify-ignore} - -Nå som du har en NAND backup i tilfelle noe går galt senere, kan du kjøre CFW på systemet ditt. - -I motsetning til systemer som DSi, Wii eller 3DS, er Wii U CFW midlertidig. Dette betyr at så snart systemet starter på nytt, vil du miste CFW og må følge disse instruksjonene igjen. Det trenger du ikke ved å installere CBHC på en Haxchi CFW installasjon. - -!> Hvis du installerer CBHC feil, så kan den bricke Wii U'en din. Sørg for å følge reglene ved installasjon av CBHC:
- DS spillet må være installert fra eShop!
- Ikke formater konsollen mens CBHC er installert!
- Ikke slett bruker kontoen som kjøpte DS VC spillet!
- Ikke installer spillet på nytt ved bruk av WUP installer eller fra eShop!
- Ikke installer Haxchi over CBHC!
- Ikke slett DS VC spillet uten å [slette CBHC på riktig måte først](../uninstall-cbhc)!
- Ikke flytt DS VC spillet til en USB lagringsenhet! - -!> Hvis du bryter en av reglene ovenfor, vil du "bricke" konsollen. - -> Hvis du er redd for å tilfeldigvis bryte en av disse reglene mens du bruker CBHC, foreslår vi å sette opp Parental Controls for brukeren din! Blokkere `Data Management` og sette `Game Rating` til det høyeste nivået kan stoppe deg fra å gjøre de vanligste feilene som forårsaker en CBHC brick. Sjekk [her](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for mer informasjon om hvordan du endrer Parental Controls innstillinger. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PCen og sett det inn i Wii U konsollen. -1. Hvis du ikke har gjort det enda, last ned DS VC spillet du valgte fra eShop. -1. Start Homebrew Launcher på Wii U konsollen din som [forklart tidligere](browser-exploit). -1. Kjør Haxchi appen. -1. Bruk D-padden til å flytte markøren til spillet du ønsker å installere Haxchi over og trykk på A knappen for å installere den. -1. Når installasjonen er ferdig, vil konsollen gå tilbake til Wii U menyen. Der vil du se spillet ditt erstattet med et Haxchi ikon. -1. Kjør Haxchi. Dette vil starte konsollen på nytt og aktivere CFW. -1. Kjør Haxchi igjen og hold A knappen mens den starter. Dette vil sende deg til Homebrew Launcher. -1. I Homebrew Launcher, kjør CBHC appen. -1. Bruk D-padden for å flytte markøren til spillet du installerte Haxchi over og trykk på A knappen for å installere CBHC. -1. Når installasjonen er ferdig, vil konsollen gå tilbake til Wii U menyen. -1. Start konsollen på nytt. Hvis CBHC er installert riktig, bør du se en ny oppstartsmeny. (CBHC er ikke kompatibel med Quick Start. Hvis du bruker Quick Start Menu, slå den av.) -1. Bruk D-padden for å flytte til `Autoboot: Disabled` og trykk på A knappen helt til det står `Autoboot: System Menu`. -1. Bruk D-padden for å flytte til `Boot system menu` og trykk på A-knappen. Dette vil åpne Wii U menyen med CFW aktivert. -1. Konsollen din kommer nå til å automatisk være i CFW etter oppstart. -1. Du kan nå koble til eventuelle USB-enheter du hadde tilkoblet, før du startet guiden. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/cbhc/nand-backup.md b/translations/no_NO/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index bc2f954999d..00000000000 --- a/translations/no_NO/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Lage en NAND backup{docsify-ignore} - -Hvis noe går galt senere i prosessen og Wii U konsollen "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -### Instruksjoner {docsify-ignore} - -?> Størrelsen på Wii U NAND er (avhengig av modellen) enten 8gb eller 32gb. På grunn av dette så må du bruke ett SD-kort som er større enn NAND størrelsen. Hvis SD-kortet ditt ikke er stort nok, så kan du hoppe over `MLC` delen hvor spilldata og saves er lagret, den er ikke nødvendig for å gjenopprette de fleste bricke-tilfellene. - -?> Å gjenopprette en NAND backup på Wii U konsollen krever litt kunskap om maskinvare og loddeferdigheter av mikro elektronikk.
Men å lage en NAND backup er **alltid** lurt, så du burde ikke hoppe over det.
NAND backupen din er unik for ditt system. backups fra andre konsoller vil **ikke** fungere. - -1. Gå til Homebrew Launcher og kjør `Wii U NAND Dumper` appen. -1. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Trykk på A knappen for å starte dumpingprosessen. -1. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -1. For å forsikre deg om at du ikke mister filene, kopier `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp. ` og hvis du valgte å gå for full sikkerhetskopi, `hver mlc.bin.part` til PC'en din. -1. Slett filene fra SD-kortet for å frigjøre plass. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/cbhc/sd-preparation.md b/translations/no_NO/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 3209d2877fd..00000000000 --- a/translations/no_NO/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## Forberede SD-kortet {docsify-ignore} - -Her vil vi plassere de nødvendige CFW-filene og noen ekstra homebrew filer på SD-kortet. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "Allocation unit size" for å formatere den. **Ikke** sett navnet på SD kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -### Dette Trenger Du {docsify-ignore} - -- Siste utgave av [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Du må laste ned `payload.zip` filen. -- [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) Versjon 1.4. - - Du må laste ned `homebrew_launcher.v.1.4.zip`. -- Siste utgave av [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Siste utgave av [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Du må laste ned `homebrew_launcher_channel.v2.1_fix.zip` filen. -- Siste utgave av [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Siste utgave av [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Du må laste ned `wiiu-extracttosd.zip` filen. -- Siste utgave av [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- Siste utgave av [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- Siste utgave av SaveMii Mod. - -### Instruksjoner {docsify-ignore} - -?> **Merk** info.json og manifest.Install filene er ikke nødvendig for modifiseringsprosessen og kan slettes. - -1. Sett SD-kortet ditt i PC'en din. -1. Opprett en mappe med navnet `install` på roten av SD-kortet. -1. Pakk ut `homebrew_launcher_channel.v2.1_fix.zip` til `install` mappen. -1. Pakk ut `haxchi.zip` til roten av SD-kortet. -1. Pakk ut `cbhc.zip` til roten av SD-kortet. -1. Pakk ut `wup_installer_gx2.zip` til roten av SD-kortet. -1. Pakk ut `nanddumper.zip` til roten av SD-kortet. -1. Pakk ut `wiiu-extracttosd.zip` til roten av SD-kortet. -1. Pakk ut `homebrew_launcher.v.1.4.zip` til roten av SD-kortet. -1. Pakk ut `savemii_mod.zip` til roten av SD-kortet. -1. Kopier `payload.elf` fila fra `payload.zip` til `wiiu` mappen på SD-kortet. ----------- - -### SD-kort oppsett {docsify-ignore} - -
-Klikk her for å se hvordan SD-kort oppsettet skal se ut. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Alle andre apper som disc2app, nanddumper, etc. skal være her også) - ┗ 📜payload.elf -``` - -
diff --git a/translations/no_NO/docs/user-guide/cbhc/sidebar.md b/translations/no_NO/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index e948a6bc20f..00000000000 --- a/translations/no_NO/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Hjemmesiden](../introduction) -- [Velg CFW](../cfw-choice) -- [Velg ett DS VC-spill](ds-vc-choice) -- [Forberede SD-kortet](sd-preparation) -- [Nettleser Exploit](browser-exploit) -- [Lage en sikkerhetskopi av NAND](nand-backup) -- [Bruke CFW](launching-cfw) -- [Installere Homebrew Channel](installing-hblc) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../donations) -- [Om denne guiden](../about) \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/cfw-choice.md b/translations/no_NO/docs/user-guide/cfw-choice.md deleted file mode 100644 index a3e8d4ac078..00000000000 --- a/translations/no_NO/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Velg CFW løsningen du ønsker å bruke ---- -?> Før du starter, oppdater Wii U konsollen til siste firmware (5.5.5) hvis du ikke har gjort det enda. - -Det er 2 hoved custom firmares: Haxchi/Coldboot Haxchi (vanligst forkortet som "CBHC") og Mocha. - -Haxchi/CBHC blir begge installert over ett originalt DS Virtual Consolle spill. Haxchi må startes fra Wii U Menu manuelt for å starte opp custom firmware, mens CBHC starter opp curstom firmware automatisk når systemet starter opp. Mocha er tilgjengelig gjennom browser exploit eller Indexiine, som gjør det til den eneste custom firmware'n som kan kjøres uten å måtte kjøpe ett spill den kan brukes med. - -custom firmware versjonen du velger er ut fra **dine** preferanser. Det er ikke noen riktig eller feil custom firmware å velge, så det anbefales at du velger den som passer best til dine behov! - -## Haxchi - -- Krever et legitimt, installert DS Virtual Console spill fra eShop. -- Kan brukes for å starte CFW direkte fra Wii U menyen. -- Du må starte denne på nytt etter hver omstart for å aktivere custom firmware igjen. -- Du kan få den til å starte sammen med Wii U konsollen hvis du installerer ColdbootHaxchi (CBHC) over Haxchi installasjonen. - -### [**Fortsett med Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Hvis du installerer CBHC feil, så kan den bricke Wii U'en din! Sørg for å følge reglene ved installasjon av CBHC:
- DS spillet må være installert fra eShop!
- Ikke formater konsollen mens CBHC er installert!
- Ikke slett bruker kontoen som kjøpte DS VC spillet!
- Ikke installer spillet på nytt ved bruk av WUP installer eller fra eShop!
- Ikke installer Haxchi over CBHC! (Ikke akkurat en brick, men vil sette konsollen i en boot-loop! Hold A når du starter konsollen for å få tilgang til Homebrew Launcher og avinstaller CBHC.)
- Ikke slett DS Virtual Console spillet uten å [slette CBHC på riktig måte først](uninstall-cbhc)!
- Ikke flytt DS VC spillet til en USB lagringsenhet! - -!> Bryter du 1 av reglene over, så **kan** Wii U'en bricke! - -> Hvis du er redd for å tilfeldigvis bryte en av disse reglene mens du bruker CBHC, foreslår vi å sette opp Parental Controls for brukeren din! Blokkere `Data Management` og sette `Game Rating` til det høyeste nivået kan stoppe deg fra å gjøre de vanligste feilene som forårsaker en CBHC brick. Sjekk [her](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for mer informasjon om hvordan du endrer Parental Controls innstillinger. - -- Krever et legitimt, installert DS Virtual Console spill fra eShop. -- Starter custom firmware automatisk ved hver oppstart. - -### [**Fortsett med CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Krever ingen spill fra eShop, og er derfor en gratis løsning. -- Du må starte denne på nytt etter hver omstart for å aktivere custom firmware igjen. -- Er ikke kompatibel med Homebrew Launcher Channel. -- Kan kreve en Internett forbindelse avhengig av hvilken inngangspunkt du velger. - -### [**Fortsett med Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/no_NO/docs/user-guide/haxchi/browser-exploit.md b/translations/no_NO/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8fe3b006a46..00000000000 --- a/translations/no_NO/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -For å installere CFW, må vi først starte Homebrew Launcher gjennom nettleseren. Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Start nettleseren og gå til `wiiuexploit.xyz`. -1. Klikk på `Run Homebrew Launcher!`. Konsollen skal starte Homebrew Launcher. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/haxchi/ds-vc-choice.md b/translations/no_NO/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index 0c45094b3c5..00000000000 --- a/translations/no_NO/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Velg ett DS VC-spill - -Det første du må velge er hvilket DS Virtual Console ("VC") spill du skal kjøpe. -Vær oppmerksom på at spillet du installerer Haxchi/CBHC over ikke vil kunne spilles lenger før du avinstallerer Haxchi/CBHC og så installerer spillet på nytt fra eShop. - -### Kompatible DS VC spill - -?> Hvis du har en europeisk regionkonsoll, er det en mulighet for at du allerede har Dr. Kawashimas Brain Training: How Old is Your Brain? gratis. Gå til [eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) og sjekk om du har spillet. - -Hvis du ikke eier noen av spillene i listen, anbefaler vi å kjøpe Brain Age (Nord-Amerika) eller Brain Training (Europa) siden det for tiden er blandt den billigste gruppen med kompatible spill og er ett spill vi regner med det er minst interesse av å spille. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/no_NO/docs/user-guide/haxchi/installing-hblc.md b/translations/no_NO/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index 5156e4db940..00000000000 --- a/translations/no_NO/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installere Homebrew Launcher Channel {docsify-ignore} - -Denne siden vil hjelpe deg med å installere Homebrew Launcher Channel som et program direkte på Wii U menyen for enkel tilgang. - -### Instruksjoner {docsify-ignore} - -?> Å installere Homebrew Launcher Channel er valgfritt siden du kan åpne den ved å holde inne A knappen mens du starter Haxchi. - -1. Slå på Wii U konsollen. -1. Start Haxchi Wii U menyen. Dette vil åpne Wii U menyen med CFW aktivert. -1. Start Haxchi igjen mens du holder inne A knappen. Dette vil sende deg til Homebrew Launcher. -1. Start WUP Installer GX2 appen. -1. Bruk touch-skjermen for å velge `Homebrew Launcher Channel`. Trykk `Install` og bekreft med `Yes`. -1. Velg NAND som installasjonsdestinasjon. Dette vil starte installasjonen av Homebrew Launcher-kanalen til Wii U menyen. -1. Når prosessen er ferdig, trykk på Home-knappen til du er tilbake på Wii U menyen. -1. Du har nå installert Homebrew Launcher Channel og kan finne den på Wii U Menyen. Husk at du må starte CFW etter hver omstart for å kunne åpne denne kanalen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/haxchi/launching-cfw.md b/translations/no_NO/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index 1e7b2a84e5f..00000000000 --- a/translations/no_NO/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Bruke CFW {docsify-ignore} - -Nå som du har en NAND backup i tilfelle noe går galt senere, kan du kjøre CFW på systemet ditt. - -I motsetning til systemer som DSi, Wii eller 3DS, er Wii U CFW midlertidig. Dette betyr at så snart systemet starter på nytt, vil du miste CFW og må følge disse instruksjonene igjen. Det trenger du ikke ved å installere CBHC på en Haxchi CFW installasjon. - -### Instruksjoner {docsify-ignore} - -?> Hvis du ikke får installert Haxchi, prøv å avinstallere og laste ned DS VC spillet fra eShop på nytt og sørg for at det blir installert i NAND. - -1. Ta SD-kortet ut av PCen og sett det inn i Wii U konsollen. -1. Hvis du ikke har gjort det enda, last ned DS VC spillet du valgte fra eShop. -1. Start Homebrew Launcher på Wii U konsollen din som [forklart tidligere](browser-exploit). -1. Kjør Haxchi appen. -1. Bruk D-padden til å flytte markøren til spillet du ønsker å installere Haxchi over og trykk på A knappen for å installere den. -1. Når installasjonen er ferdig, vil konsollen gå tilbake til Wii U menyen. Der vil du se spillet ditt erstattet med et Haxchi ikon. -1. Kjør Haxchi. Dette vil starte konsollen på nytt og aktivere CFW. -1. Du må kjøre Haxchi etter hver omstart for å aktivere CFW. -1. Du kan nå koble til eventuelle USB-enheter du hadde tilkoblet, før du startet guiden. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/haxchi/nand-backup.md b/translations/no_NO/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index ad51014fa49..00000000000 --- a/translations/no_NO/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Lage en NAND backup{docsify-ignore} - -Hvis noe går galt senere i prosessen og Wii U konsollen "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -### Instruksjoner {docsify-ignore} - -?> Størrelsen på Wii U NAND er (avhengig av modellen) enten 8gb eller 32gb. På grunn av dette så må du bruke ett SD-kort som er større enn NAND størrelsen. Hvis SD-kortet ditt ikke er stort nok, så kan du hoppe over `MLC` delen hvor spilldata og saves er lagret, den er ikke nødvendig for å gjenopprette de fleste bricke-tilfellene. - -?> Å gjenopprette en NAND backup på Wii U konsollen krever litt kunskap om maskinvare og loddeferdigheter av mikro elektronikk.
Men å lage en NAND backup er **alltid** lurt, så du burde ikke hoppe over det.
NAND backupen din er unik for ditt system. backups fra andre konsoller vil **ikke** fungere. - -1. Gå til Homebrew Launcher og kjør `Wii U NAND Dumper` appen. -1. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Trykk på A knappen for å starte dumpingprosessen. -1. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -1. For å forsikre deg om at du ikke mister filene, kopier `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp. ` og hvis du valgte å gå for full sikkerhetskopi, `hver mlc.bin.part` til PC'en din. -1. Slett filene fra SD-kortet for å frigjøre plass. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/haxchi/sd-preparation.md b/translations/no_NO/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0d82dde1836..00000000000 --- a/translations/no_NO/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## Forberede SD-kortet {docsify-ignore} - -Her vil vi plassere de nødvendige CFW-filene og noen ekstra homebrew filer på SD-kortet. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "Allocation unit size" for å formatere den. **Ikke** sett navnet på SD kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -### Dette Trenger Du {docsify-ignore} - -- Siste utgave av [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Du må laste ned `payload.zip` filen. -- [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) Versjon 1.4. - - Du må laste ned `homebrew_launcher.v.1.4.zip`. -- Siste utgave av [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Siste utgave av [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Du må laste ned `homebrew_launcher_channel.v2.1_fix.zip` filen. -- Siste utgave av [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Siste utgave av [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Du må laste ned `wiiu-extracttosd.zip` filen. -- Siste utgave av [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- Siste utgave av SaveMii Mod. - -### Instruksjoner {docsify-ignore} - -?> **Merk** info.json og manifest.Install filene er ikke nødvendig for modifiseringsprosessen og kan slettes. - -1. Sett SD-kortet ditt i PC'en din. -1. Opprett en mappe med navnet `install` på roten av SD-kortet. -1. Pakk ut `homebrew_launcher_channel.v2.1_fix.zip` til `install` mappen. -1. Pakk ut `haxchi.zip` til roten av SD-kortet. -1. Pakk ut `wup_installer_gx2.zip` til roten av SD-kortet. -1. Pakk ut `nanddumper.zip` til roten av SD-kortet. -1. Pakk ut `wiiu-extracttosd.zip` til roten av SD-kortet. -1. Pakk ut `homebrew_launcher.v.1.4.zip` til roten av SD-kortet. -1. Pakk ut `savemii_mod.zip` til roten av SD-kortet. -1. Kopier `payload.elf` fila fra `payload.zip` til `wiiu` mappen på SD-kortet. ----------- - -### SD-kort oppsett {docsify-ignore} - -
-Klikk her for å se hvordan SD-kort oppsettet skal se ut. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Alle andre apper som disc2app, nanddumper, etc. skal være her også) - ┗ 📜payload.elf -``` - -
diff --git a/translations/no_NO/docs/user-guide/haxchi/sidebar.md b/translations/no_NO/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 418da132b5d..00000000000 --- a/translations/no_NO/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Hjemmesiden](../introduction) -- [Velg CFW](../cfw-choice) -- [Velg ett DS VC-spill](ds-vc-choice) -- [Forberede SD-kortet](sd-preparation) -- [Nettleser Exploit](browser-exploit) -- [Lage en sikkerhetskopi av NAND](nand-backup) -- [Bruke CFW](launching-cfw) -- [Installere Homebrew Channel](installing-hblc) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../donations) -- [Om denne guiden](../about) \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/introduction.md b/translations/no_NO/docs/user-guide/introduction.md deleted file mode 100644 index 189e06fc30d..00000000000 --- a/translations/no_NO/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -En guide i samarbeid med Nintendo Homebrew's Helpers og Staff, fra urørt konsoll til Aroma Custom Firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Les **#faq-wiiu**, og [Ofte Stilte Spørsmål](faq) for å se om spørsmålet ditt allerede har blitt besvart. - -> Hvis du setter pris på denne guiden, godtar vi [donasjoner](donations). - -> For flere guider til homebrew og custom firmware til andre konsoller, skjekk ut [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew apper er hjemmelagd programvare som ikke er godkjent av Nintendo. Dette kan for eksempel være redigeringsverktøy for saves, spill, emulatorer med mer. - -Homebrew kan kjøres på Wii U konsollen din så lenge du kan legge filer på et SD-kort og Wii U konsollen er oppdatert til den nyeste versjonen for din region. - -### Custom Firmware - -Custom firmware (vanligvis forkortet til "CFW") gjør det mulig for deg å bruke hacks som userland homebrew ikke kan kjøre på egenhånd. Som for eksempel å installere spillmodifikasjoner. CFW kan settes opp på alle konsollene på den nyeste systemversjonen. - -### Hva Homebrew & CFW Kan Brukes Til - -Blandt annet kan du med dette: - -- Bruke "ROM hacks" for spill du eier. -- Sikkerhetskopiere, redigere og gjenopprette saves for mange spill. -- Spille spill fra eldre konsoller med ulike emulatorer ved å bruke RetroArch eller andre frittstående emulatorer. -- Spille spill fra andre regioner. -- Dumpe Wii U spill diskene dine til et format som kan installeres på internminnet til Wii U konsollen eller en USB-lagringsenhet. - - -### Målet Med Guiden - -Målet med denne guiden er å gå fra en umodifisert konsoll til å kjøre custom firmware. - -### Før Du Starter - -!> Før du starter guiden, må du være klar over risikoen ved å hacke en Wii U konsoll: **HVER** gang du endrer systemfiler, kan du potensielt **"BRICKE"** konsollen. Det skjer sjeldent, men det er fortsatt mulig så følg **ALLE** trinnene **NØYAKTIG!** -> -> Denne guiden vil fungere på alle Wii-U konsoller i alle regioner på siste firmware versjon (5.5.6 for Nord Amerikanske konsoller, 5.5.5 for alle andre regioner) eller lavere. -> -> Dette trenger du for å følge denne guiden: -> -> - Et SD-kort. -> - Noe til å overføre filer til SD-kortet som for eksempel en PC. -> - En Wii U konsoll med internett tilkobling. -> -> Ett 32gb SD-kort vil være godt nok for de aller fleste. Ett micro SD-kort i adapter er helt greit. - -?> **Hvis du allerede har en eldre CFW satt opp**
For **CBHC** brukere: gå til [Uninstall CBHC](../uninstall-cbhc) siden og avinstaller CBHC.
For **Haxchi** brukere: avinstaller Haxchi appen fra Data Management i System Settings.
For **Mocha CFW (Indexiine)** brukere: gå til [Uninstall Indexiine](../uninstall-indexiine) siden for å avinstallere Indexiine.
For **Mocha CFW (Online Exploit)** brukere: du trenger ikke gjøre noenting for å følge denne guiden. - -Hvis du følger guiden riktig, vil du fortsatt ha alt du startet med (spill, saves, NNID osv blir bevart). - -La Wii U konsollen og gamepad være tilkoblet til strøm under hele prosessen for å unngå datatap eller skade ved ett uventet strømbrudd. - -Etter å ha fulgt denne guiden, CFW vil kjøre og være aktivt når konsollen slår seg på, med mindre du velger å ikke følge Autobooting Aroma delen av guiden. - -Det anbefales at du leser igjennom hele guiden fra start til slutt, minst én gang før du setter igang med å modifiserere konsollen din. - ---- - -### [Fortsett til Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/no_NO/docs/user-guide/mocha/entrypoint-choice.md b/translations/no_NO/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index d00a82f213c..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Velg et Entrypoint - -## Online Exploit - -- Dette krever Internett-tilgang hver gang du vil starte Homebrew Launcher. - -### [**Fortsett med Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Dette krever Internett-tilgang for installasjonsprosessen, men kan brukes offline etter den er satt opp. -- Dette krever at du endrer en systemfil. - -### [**Fortsett med Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/no_NO/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index 7365a85d468..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -For å installere CFW, må vi først starte Homebrew Launcher gjennom nettleseren. Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Start nettleseren og gå til `wiiuexploit.xyz`. -1. Klikk på `Run Homebrew Launcher!`. Konsollen skal starte Homebrew Launcher. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/no_NO/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index 0d761f683b0..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Nettleser Modifisering {docsify-ignore} - -Nå som du har en NAND backup i tilfelle noe går galt senere, kan du installere Indexiine på systemet ditt. - -?> Om du ikke har satt SD-kortet tilbake i Wii U konsollen etter at du har kopiert NAND sikkerhetskopien til en PC, gjør det nå. - - -### Instruksjoner {docsify-ignore} - -1. Slå på Wii U konsollen. -1. Start nettleseren og gå til nettsiden `wiiuexploit.xyz`. -1. Klikk på `Run Homebrew Launcher!`. Konsollen skal starte Homebrew Launcher. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. -1. Gå til Homebrew Launcher og kjør `Indexiine Installer` appen. -1. Trykk på A knappen for å installere Indexiine. -1. Når prosessen er ferdig, lukk Homebrew Launcher for å gå tilbake til Wii U menyen. - -Nettleseren vil nå sende deg rett til Homebrew Launcher selv om du ikke har internett tilkobling. Hvis du vil besøke et annet nettsted, kan du søke før Indexiine starter exploit'en. - -?> Hvis du ønsker å avinstallere Indexiine, se [Avinstallere Indexiine](../../uninstall-indexiine) siden diff --git a/translations/no_NO/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/no_NO/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index e62d5e7eff0..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Bruke CFW {docsify-ignore} - -I motsetning til systemer som DSi, Wii eller 3DS, er Wii U CFW midlertidig. Dette betyr at så snart systemet starter på nytt, vil du miste CFW og må følge disse instruksjonene igjen. Det trenger du ikke ved å installere CBHC på en Haxchi CFW installasjon. - -### Instruksjoner {docsify-ignore} - -1. Start Homebrew Launcher ved å åpne nettleseren. -1. Kjør Mocha appen. -1. Dette tar deg tilbake til Homebrew Launcher med CFW aktivert. -1. Når du starter konsollen på nytt, må du gå gjennom trinnene på nytt for å starte CFW igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/no_NO/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 17a6e4d9e72..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Lage en NAND backup{docsify-ignore} - -Hvis noe går galt senere i prosessen og Wii U konsollen "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -### Instruksjoner {docsify-ignore} - -?> Størrelsen på Wii U NAND er (avhengig av modellen) enten 8gb eller 32gb. På grunn av dette så må du bruke ett SD-kort som er større enn NAND størrelsen. Hvis SD-kortet ditt ikke er stort nok, så kan du hoppe over `MLC` delen hvor spilldata og saves er lagret, den er ikke nødvendig for å gjenopprette de fleste bricke-tilfellene. - -?> Å gjenopprette en NAND backup på Wii U konsollen krever litt kunskap om maskinvare og loddeferdigheter av mikro elektronikk.
Men å lage en NAND backup er **alltid** lurt, så du burde ikke hoppe over det.
NAND backupen din er unik for ditt system. backups fra andre konsoller vil **ikke** fungere. - -1. Gå til Homebrew Launcher og kjør `Wii U NAND Dumper` appen. -1. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Trykk på A knappen for å starte dumpingprosessen. -1. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -1. For å forsikre deg om at du ikke mister filene, kopier `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp. ` og hvis du valgte å gå for full sikkerhetskopi, `hver mlc.bin.part` til PC'en din. -1. Slett filene fra SD-kortet for å frigjøre plass. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/no_NO/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index 9445124e0a7..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## Forberede SD-kortet {docsify-ignore} - -Her vil vi plassere de nødvendige CFW-filene og noen ekstra homebrew filer på SD-kortet. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "Allocation unit size" for å formatere den. **Ikke** sett navnet på SD kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -### Dette Trenger Du {docsify-ignore} - -- Mocha config fila. -- Siste utgave av [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Du må laste ned `payload.zip` filen. -- [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) Versjon 1.4. - - Du må laste ned `homebrew_launcher.v.1.4.zip`. -- Siste utgave av [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Siste utgave av [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Siste utgave av [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Du må laste ned `wiiu-extracttosd.zip` filen. -- Siste utgave av [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- Siste utgave av SaveMii Mod. -- Siste utgave av [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instruksjoner {docsify-ignore} - -?> **Merk** info.json og manifest.Install filene er ikke nødvendig for modifiseringsprosessen og kan slettes. - -1. Sett SD-kortet ditt i PC'en din. -1. Pakk ut `wup_installer_gx2.zip` til roten av SD-kortet. -1. Pakk ut `nanddumper.zip` til roten av SD-kortet. -1. Pakk ut `wiiu-extracttosd.zip` til roten av SD-kortet. -1. Pakk ut `homebrew_launcher.v.1.4.zip` til roten av SD-kortet. -1. Pakk ut `mocha.zip` til roten av SD-kortet. -1. Pakk ut `indexiine-installer.zip` til roten av SD-kortet. -1. Pakk ut `savemii_mod.zip` til roten av SD-kortet. -1. Kopier `config.ini` fila til `/wiiu/apps/mocha` mappen på SD-kortet. -1. Kopier `payload.elf` fila fra `payload.zip` til `wiiu` mappen på SD kortet. ----------- - -### SD-kort oppsett {docsify-ignore} - -
-Klikk her for å se hvordan SD-kort oppsettet skal se ut. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Alle abdre apper som disc2app, nanddumper, etc. skal være her også) - ┗ 📜payload.elf -``` - -
diff --git a/translations/no_NO/docs/user-guide/mocha/indexiine/sidebar.md b/translations/no_NO/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index 8191394314d..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Hjemmesiden](../../introduction) -- [Velg CFW](../../cfw-choice) -- [Velg et Entrypoint](../entrypoint-choice) -- [Forberede SD-kortet](sd-preparation) -- [Nettleser Exploit](browser-exploit) -- [Lage en sikkerhetskopi av NAND](nand-backup) -- [Nettleser Modifisering](browser-modding) -- [Bruke CFW](launching-cfw) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../../donations) -- [Om denne guiden](../../about) \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/no_NO/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 346a36cbdc8..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -For å installere CFW, må vi først starte Homebrew Launcher gjennom nettleseren. Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Start nettleseren og gå til `wiiuexploit.xyz`. -1. Klikk på `Run Homebrew Launcher!`. Konsollen skal starte Homebrew Launcher. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/no_NO/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 19ae0031e2b..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Bruke CFW {docsify-ignore} - -Nå som du har en NAND backup i tilfelle noe går galt senere, kan du kjøre CFW på systemet ditt. - -I motsetning til systemer som DSi, Wii eller 3DS, er Wii U CFW midlertidig. Dette betyr at så snart systemet starter på nytt, vil du miste CFW og må følge disse instruksjonene igjen. Det trenger du ikke ved å installere CBHC på en Haxchi CFW installasjon. - -### Instruksjoner {docsify-ignore} - -1. Ta SD-kortet ut av PCen og sett det inn i Wii U konsollen. -1. Start Homebrew Launcher på Wii U konsollen din som [forklart tidligere](browser-exploit). -1. Kjør Mocha appen. -1. Dette tar deg tilbake til Homebrew Launcher med CFW aktivert. -1. Når du starter konsollen på nytt, må du gå gjennom trinnene på nytt for å starte CFW igjen. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/no_NO/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 548f7123c60..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Lage en NAND backup{docsify-ignore} - -Hvis noe går galt senere i prosessen og Wii U konsollen "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -### Instruksjoner {docsify-ignore} - -?> Størrelsen på Wii U NAND er (avhengig av modellen) enten 8gb eller 32gb. På grunn av dette så må du bruke ett SD-kort som er større enn NAND størrelsen. Hvis SD-kortet ditt ikke er stort nok, så kan du hoppe over `MLC` delen hvor spilldata og saves er lagret, den er ikke nødvendig for å gjenopprette de fleste bricke-tilfellene. - -?> Å gjenopprette en NAND backup på Wii U konsollen krever litt kunskap om maskinvare og loddeferdigheter av mikro elektronikk.
Men å lage en NAND backup er **alltid** lurt, så du burde ikke hoppe over det.
NAND backupen din er unik for ditt system. backups fra andre konsoller vil **ikke** fungere. - -1. Gå til Homebrew Launcher og kjør `Wii U NAND Dumper` appen. -1. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Trykk på A knappen for å starte dumpingprosessen. -1. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -1. For å forsikre deg om at du ikke mister filene, kopier `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp. ` og hvis du valgte å gå for full sikkerhetskopi, `hver mlc.bin.part` til PC'en din. -1. Slett filene fra SD-kortet for å frigjøre plass. \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/no_NO/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index 23d2261d53d..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## Forberede SD-kortet {docsify-ignore} - -Her vil vi plassere de nødvendige CFW-filene og noen ekstra homebrew filer på SD-kortet. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "Allocation unit size" for å formatere den. **Ikke** sett navnet på SD kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -### Dette Trenger Du {docsify-ignore} - -- Mocha config fila. -- Siste utgave av [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Du må laste ned `payload.zip` filen. -- [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) Versjon 1.4. - - Du må laste ned `homebrew_launcher.v.1.4.zip`. -- Siste utgave av [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Siste utgave av [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Siste utgave av [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Du må laste ned `wiiu-extracttosd.zip` filen. -- Siste utgave av [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- Siste utgave av SaveMii Mod. - -### Instruksjoner {docsify-ignore} - -?> **Merk** info.json og manifest.Install filene er ikke nødvendig for modifiseringsprosessen og kan slettes. - -1. Sett SD-kortet ditt i PC'en din. -1. Pakk ut `wup_installer_gx2.zip` til roten av SD-kortet. -1. Pakk ut `nanddumper.zip` til roten av SD-kortet. -1. Pakk ut `wiiu-extracttosd.zip` til roten av SD-kortet. -1. Pakk ut `homebrew_launcher.v.1.4.zip` til roten av SD-kortet. -1. Pakk ut `mocha.zip` til roten av SD-kortet. -1. Pakk ut `savemii_mod.zip` til roten av SD-kortet. -1. Kopier `config.ini` fila til `/wiiu/apps/mocha` mappen på SD-kortet. -1. Kopier `payload.elf` fila fra `payload.zip` til `wiiu` mappen på SD-kortet. ----------- - -### SD-kort oppsett {docsify-ignore} - -
-Klikk her for å se hvordan SD-kort oppsettet skal se ut. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Alle abdre apper som disc2app, nanddumper, etc. skal være her også) - ┗ 📜payload.elf -``` - -
diff --git a/translations/no_NO/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/no_NO/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index 12cc2f1ae28..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Hjemmesiden](../../introduction) -- [Velg CFW](../../cfw-choice) -- [Velg et Entrypoint](../entrypoint-choice) -- [Forberede SD-kortet](sd-preparation) -- [Nettleser Exploit](browser-exploit) -- [Lage en sikkerhetskopi av NAND](nand-backup) -- [Bruke CFW](launching-cfw) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../../donations) -- [Om denne guiden](../../about) \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/mocha/sidebar.md b/translations/no_NO/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index c90a3d5939d..00000000000 --- a/translations/no_NO/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Hjemmesiden](../introduction) -- [Velg CFW](../cfw-choice) -- [Velg et Entrypoint](entrypoint-choice) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../donations) -- [Om denne guiden](../about) \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/tiramisu/autoboot.md b/translations/no_NO/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index 9c074a00f54..00000000000 --- a/translations/no_NO/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Hver gang du vil kjøre Tiramisu så må du starte Health and Safety Information appen. Hvis du ønsker å starte Tiramisu automatisk ved oppstart, så kan du autoboote Health and Safety Information appen. - -### Instruksjoner - -1. Start konsollen for å komme inn i Wii U menu, kjør Health and Safety Information appen og hold X kanppen for å åpne Environment Loader menu. -1. Naviger lista ved å bruke D-Paden og velg `installer` environment, trykk A for å kjøre den. -1. Trykk A for å velge `Check`. -1. Velg `Boot options`. -1. Du vil bli spurt om du vil bytte boot title. Trykk A for å velge `Switch to PayloadLoader`. -1. Når prosessen er ferdig, trykk A for å slå av konsollen. -1. PayloadLoader vil nå kjøre automatisk når konsollen starter. - - For å endre "default boot title" hold Start (+) på Gamepaden mens konsollen slår seg på. Du kan ikke bytte boot title før du har satt en default environment først. - - Naviger lista ved å bruke D-Paden og velg hvilken tittel du vil autoboote inn i, så trykker du Y knappen for å sette det til autoboot tittel. - - Trykk på A for å starte den valgte tittelen. - diff --git a/translations/no_NO/docs/user-guide/tiramisu/browser-exploit.md b/translations/no_NO/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index 246cf78101b..00000000000 --- a/translations/no_NO/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Nettleser Exploit - -Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner - -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. -1. Start nettleseren og gå til `wiiuexploit.xyz`. -1. Trykk `Run Exploit!` og hold B knappen inne intil du ser ett skjermbilde som sier `Please choose your payload:`, Dette er nødvendig for de neste stegene. - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. - - Hvis du ser EnvironmentLoader, så holdt du ikke B knappen inne lenge nok. Prøv på nytt. - diff --git a/translations/no_NO/docs/user-guide/tiramisu/finalizing-setup.md b/translations/no_NO/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 9bafb23e077..00000000000 --- a/translations/no_NO/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Fullføre installasjon - -Nå som PayloadLoader, Environment Loader og Tiramisu er installert, skal vi fullføre installasjonen. - -Vi skal gjøre så Tiramisu environmentet starter automatisk når konsollen autobooter Heath and Safety Information Appen (eller når du manuelt kjører det hvis du velger å ikke autoboote det) og velge Wii U menu som default samt skaffe ekstra homebrew apper. - -### Sette opp PayloadLoader, Environment Loader og Tiramisu - -1. Slå på Wii U konsollen. - - Environment Loader burde komme opp. -1. Ved å bruke D-Paden, naviger til `tiramisu` og trykk Y for å sette dette til default envrionment, så trykker du A for å kjøre Tiramisu. - - Det kan hende du får ett rødt advarselvindu som forteller deg at oppdateringer ikke er blokkert ordentlig. Trykk likevel A for å fortsette. Vi går gjennom hvordan man blokkerer oppdateringer i "Blokkere Systemoppdateringer" delen nedenfor. - - For å åpne Environment Loader i fremtiden, må du holde X mens Wii U konsollen slår seg på. -1. På Tiramisu Boot Selector, `Wii U Menu` burde allerede være valgt, trykk Y for å sette det til default autobooting option, så trykker du A for å komme inn i Wii U Menu. - - For å åpne Tiramisu Boot Selector i fremtiden, må du holde START (+) mens Wii U konsollen slår seg på. - -?> Når du har kommet inn i Tiramisu environment, kan du åpne Mii Maker appen når som helst for å komme inn i Homebrew Launcher.
Homebrew Launcher vil være tom for førstegangs oppsett. Følg resten av guiden for å installere apper i Homebrew Launcher.
For å gå tilbake til Mii Maker, trykk HOME knappen mens du er i Homebrew Launcher. - -### Blokkere Systemoppdateringer -Selv om Tiramisu's PayloadLoader allerede har en update block funksjon, så er det anbefalt å slette update mappen for være sikker på at systemet ikke oppdateres automatisk. Hvis du får ett rødt advarselvindu mens du starter opp i Tiramisu, så betyr det at update mappen fortsatt er i systemet og det er anbefalt å slette den med [denne guiden](../block-updates). - -### Ekstra Homebrew-apper - -- **SaveMii Mod WUT Port** er en homebrew app som lar deg styre Wii-U og vWii save filer. -- **Bloopair** er en Tiramisu modul som lar deg koble trådløst til de mest populære Bluetooth kontrollene. Se [denne siden](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for mer informasjon. -- **Homebrew Appstore** lar deg søke etter og laste ned homebrew apps direkte til Wii U konsollen. - -### Ekstra Homebrew Apper - Dette Trenger Du - -- Siste utgave av [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- Siste utgave av [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` fra [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Ekstra Homebrew Apper - Pakke ut Filer to SD-Kortet - -1. Pakk ut `SaveMiiModWUTPort.zip` fila til roten av SD-kortet. -1. Pakk ut `Bloopair_vX.X.X.zip` fila. - Kopier `30_bloopair.rpx` til `wiiu/environments/tiramisu/modules/setup/` mappen på roten av SD-kortet ditt. - Kopier `wiiu` mappa til roten av SD-kortet ditt. -1. Pakk ut `wiiu-extracttosd.zip` til roten av SD-kortet. - -### Installere Aroma -Aroma er ett work-in-progress environment med støtte til plugins, modules og homebrew bundles. -Aroma kan installeres i tillegg til Tiramisu, hvis du vil prøve ut funksjonene i den. - -[**Aroma guiden finner du her**](../aroma/getting-started) diff --git a/translations/no_NO/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/no_NO/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index f7a77733030..00000000000 --- a/translations/no_NO/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installere PayloadLoader - -Nå som du har en NAND backup i tilfelle noe går galt senere, kan du installere PayloadLoader på Wii U konsollen. - -Å installere PayloadLoader lar deg bruke Tiramisu ved å kjøre Health and Safety Information appen. - -!> En factory reset vil **ikke** fjerne en installert PayloadLoader. Følg [avinstallere PayloadLoader](../../uninstall-payloadloader) for å fjerne PayloadLoader. - -### Instruksjoner - -?> Hvis du allerede er i Tiramisu, start Wii U konsollen din på nytt før du kjører browser exploiten igjen. - -1. Ta SD-kortet ut av PCen og sett det inn i Wii U konsollen. -1. Kjør browser exploiten som [tidligere forklart](browser-exploit) men denne gangen, må du holde X knappen inne for å åpne Environment Loader menu. -1. Naviger lista ved å bruke D-Paden og velg `installer` environment, trykk A for å kjøre den. -1. Trykk A knappen for å skjekke om du kan installere PayloadLoader. - - Det burde nå stå at PayloadLoader kan installeres oppå Health and Safety Information appen. -1. Trykk A for å velge `Install / Update`. -1. Du vil bli spurt om du er sikker på at du vil installere PayloadLoader. Bruk D-Paden for å velge `Install` og trykk A. -1. Etter installasjonen er fullført, trykk A for å slå av konsollen. - -!> Hvis du ikke ønsker å autoboote Tiramisu på konsollen, kan du hoppe over `Autobooting Tiramisu` delen og gå rett til [Fullføre Installasjon](finalizing-setup). \ No newline at end of file diff --git a/translations/no_NO/docs/user-guide/tiramisu/nand-backup.md b/translations/no_NO/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 1b974142710..00000000000 --- a/translations/no_NO/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Lage en sikkerhetskopi av NAND - -Hvis noe går galt senere i prosessen og Wii U konsollen "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -### Instruksjoner - -?> Størrelsen på Wii U NAND er (avhengig av modellen) enten 8gb eller 32gb. På grunn av dette så må du bruke ett SD-kort som er større enn NAND størrelsen. Hvis SD-kortet ditt ikke er stort nok, så kan du hoppe over `MLC` delen hvor spilldata og saves er lagret, den er ikke nødvendig for å gjenopprette de fleste bricke-tilfellene. - -?> Å gjenopprette en NAND backup på Wii U konsollen krever litt kunskap om maskinvare og loddeferdigheter av mikro elektronikk.
Men å lage en NAND backup er **alltid** lurt, så du burde ikke hoppe over det.
NAND backupen din er unik for ditt system. backups fra andre konsoller vil **ikke** fungere. - -1. Naviger til `nanddumper` ved å bruke GamePaden og trykk A for å kjøre den. -1. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Trykk på A knappen for å starte dumpingprosessen. -1. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -1. Filene vil vises på roten av SD-kortet. -1. For å forsikre deg om at du ikke mister filene, kopier `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp. ` (og hvis du valgte å gå for full sikkerhetskopi, `hver mlc.bin.part`) til PC'en din. -1. Slett filene fra SD-kortet for å frigjøre plass. - -?> **Hvis PayloadLoader allerede er installert over Health and Safety Information appen og konsollen din allerede autobooter det, trenger du ikke følge denne guiden mer.** diff --git a/translations/no_NO/docs/user-guide/tiramisu/sd-preparation.md b/translations/no_NO/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index e4e30819d11..00000000000 --- a/translations/no_NO/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Forberede SD-kortet - -Her vil vi plassere de nødvendige CFW-filene og noen ekstra homebrew filer på SD-kortet. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "Allocation unit size" for å formatere den.
**Ikke** sett navnet på SD-kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -?> **Hvis du allerede har en eldre CFW satt opp**
For **CBHC** brukere: gå til [Uninstall CBHC](../uninstall-cbhc) siden og avinstaller CBHC.
For **Haxchi** brukere: avinstaller Haxchi appen fra Data Management i System Settings.
For **Mocha CFW (Indexiine)** brukere: gå ttil [Uninstall Indexiine](../uninstall-indexiine) siden for å avinstallere Indexiine.
For **Mocha CFW (Online Exploit)** brukere: du trenger ikke gjøre noenting for å følge denne guiden. - -### Dette trenger du - -- Nyeste utgave av [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Klikk på `Download Tiramisu`. -- Nyeste utgave av [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - Du må laste ned `01_sigpatches.rpx` filen. - -### Instruksjoner - -1. Sett SD-kortet ditt i PC'en din. -1. **Pakk ut** Tiramisu *`.zip`* fila til roten av SD-kortet. -1. Kopier `01_sigpatches.rpx` fila til `/wiiu/environments/tiramisu/modules/setup` på SD-kortet. - -?> Hvis pc'en din spør deg om å erstatte eksisterende filer på SD-kortet, skal du trykke ja. - - Hvis du bruker en Mac, må du velge `Merge` i stedet for å erstatte. - ----------- - -### SD-kort oppsett {docsify-ignore} - -
-Klikk her for å se hvordan SD-kort oppsettet skal se ut. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/no_NO/docs/user-guide/tiramisu/sidebar.md b/translations/no_NO/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index aabd475f632..00000000000 --- a/translations/no_NO/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Hjemmesiden](../introduction) -- [Forberede SD-kortet](sd-preparation) -- [Nettleser Exploit](browser-exploit) -- [Lage en sikkerhetskopi av NAND](nand-backup) -- [Installere PayloadLoader](installing-payloadloader) -- [Autoboote Tiramisu](autobooting) -- [Fullføre installasjon](finalizing-setup) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../donations) -- [Om denne guiden](../about) diff --git a/translations/no_NO/docs/user-guide/vwii/browser-exploit.md b/translations/no_NO/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index f7a9032ae78..00000000000 --- a/translations/no_NO/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Utnytte en Exploit ---- -For å installere Homebrew Channel, må vi først lage en NAND backup og ha muligheten til å kjøre Homebrew Launcher gjennom en exploit, sånn som Browser Exploit. - -Sørg for at Wii U konsollen har internettilgang for dette trinnet. - -### Instruksjoner {docsify-ignore} - -1. Velg ut og kjør en exploit: - - Hvis du aldri har kjørt homebrew før, så vil "kjør exploit" si at du må kjøre Browser Exploit. For å kjøre Browser Exploit så må du kjøre Nettleseren på konsollen og gå til `wiiuexploit.xyz`, og klikke på `Run Exploit!` - - Hvis Wii U konsollen blir sittende fast på en hvit eller fryst skjerm, vent noen få sekunder. Hvis ingenting skjer, start konsollen på nytt og [tilbakestill nettleserens lagringsdata](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) og prøv igjen. - - - Hvis du coldbooter inn i PayloadLoader, så vil "kjør exploit" si at du må slå på konsollen. - - - Hvis du kjører PayloadLoader via Health & Safety Information appen, så vil "kjør exploit" si at du må kjøre Health & Safety Information appen. - -1. Imens du kjører din valgte exploit, hold enten B knappen (hvis du følger `NAND Backup` seksjonen) eller X knappen (hvis du følger `Installing the Homebrew Channel` seksjonen). diff --git a/translations/no_NO/docs/user-guide/vwii/finalizing-setup.md b/translations/no_NO/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 2a09ec83619..00000000000 --- a/translations/no_NO/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - -## Fullføre installasjon - -Nå som de nødvendige cIOSes og IOS80 patchene er blitt lagt inn, kan vi nå til å fullføre oppsettet. - -### Ekstra Homebrew-apper - -- **SaveGame Manager GX** lar deg ta backup av, og erstatte saves og Miis, spesielt saves som ellers ikke kan kopieres. -- **Nintendont** er en virtuell maskin som lar deg spille Gamecube spill. -- **Open Shop Channel** er en appstore hvor du kan laste ned flere apper. - -### Ekstra Homebrew Apper - Dette Trenger Du - -- Siste utgave av [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- `loader.dol`, `meta.xml` og `icon.png` fra [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- `Homebrew Browser.zip` fra [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Ekstra Homebrew Apper - Pakke ut Filer to SD-Kortet - -1. Pakk ut og kopier innholdet fra `SaveGame_Manager_GX.zip` til roten av SD-kortet. -2. Følg instruksjonene i linken for å kopiere Nintendont, scroll nedover. -3. Pakk ut og kopier innholdet i `homebrew_browser.zip` til roten av SD-kortet. - -### USB Loaders - -for å spille Wii spill backups, så trenger du en USB loader. Det er 2 populære loaders som heter WiiFlow Lite og USB Loader GX. Du finner begge på [denne siden](https://wii.hacks.guide/wii-loaders). - -### Installere Priiloader - -Jepp, Priiloader virker nå også i vWii! For å installere det kan du følge guiden på [denne siden](https://wii.hacks.guide/priiloader). - -!> Priiloader versjoner før 0.10.0 fungerer ikke med vWii. Priiloader versjoner før 0.8.2 vil bricke vWii. diff --git a/translations/no_NO/docs/user-guide/vwii/installing-cioses.md b/translations/no_NO/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index 850b036faae..00000000000 --- a/translations/no_NO/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - -## Installerer cIOS'er - -1. Slå på Wii U konsollen og start vWii. -2. Start Homebrew Channel. -3. Kjør d2x cIOS Installer. -4. Velg følgende instillinger: - - Velg cIOS: `d2x-v11-beta1-vWii` - - Velg cIOS base: `56` - - Velg cIOS slot: `249` -5. Trykk på `A` knappen for å installere dem. -6. Velg følgende instillinger: - - Velg cIOS: `d2x-v11-beta1-vWii` - - Velg cIOS base: `57` - - Velg cIOS slot: `250` -7. Trykk på `A` knappen for å installere dem. -8. Velg følgende instillinger: - - Velg cIOS: `d2x-v11-beta1-vWii` - - Velg cIOS base: `58` - - Velg cIOS slot: `251` -9. Trykk på `A` knappen for å installere dem. -10. Trykk på `B` knappen for å avslutte. - -!> Hvis du bare får `d2x-v6` eller `d2x-v11-beta1`, last ned appen på nytt og/eller sørg for at SD-kortet er ulåst. diff --git a/translations/no_NO/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/no_NO/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index 4de3dbf58ce..00000000000 --- a/translations/no_NO/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - -## Installere Homebrew Channel - -1. Boot inn i [Aroma](browser-exploit). -2. Kjør `vWii Compat Installer` fra Wii U Menyen. -3. Trykk `A` for å installere Homebrew Channel og vent til du ser `Install succeeded`. Så trykker du HOME-knappen for å gå tilbake til Wii U menu. -4. Start vWii (Wii menu ikonet). - - Hvis installasjonen ble ferdig, bør du se Homebrew Channel kanalen i Wii Menu. diff --git a/translations/no_NO/docs/user-guide/vwii/nand-backup.md b/translations/no_NO/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index fb7df06a0a2..00000000000 --- a/translations/no_NO/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - -## NAND Backup - -I tilfelle noe går galt og du ender opp med å bricke vWii, så kan du fikse det ved å restaurere en tidligere NAND backup, eller så kan du [installere hele vWii på nytt](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> Hvis du nylig har laget en NAND sikkerhetskopi som inneholder SLCCMPT og OTP, kan du hoppe over dette trinnet. - -1. Kjør [Wii U NAND Dumper](browser-exploit). -2. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Trykk på A knappen for å starte dumpingprosessen. -4. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -5. For å være sikker på at du ikke mister filene, kopier `slccmpt.bin` og, `otp.bin`, (og hvis du velger å ta en full backup, `seeprom.bin`, `slc.bin`, og alle `mlc.bin.part` filene) til pc'en din. -6. Slett filene fra SD-kortet for å frigjøre plass. -7. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. diff --git a/translations/no_NO/docs/user-guide/vwii/patching-ios80.md b/translations/no_NO/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index e46d2d285a5..00000000000 --- a/translations/no_NO/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - -## Patche IOS 80 (valgfritt) - -Å patche IOS 80 lar deg bruke custom channels på SD-kortet, inkludert wad filer. Det er imidlertid ikke nødvendig. - -!> Hvis Wii U konsollen din slår seg av mens du patcher IOS 80, vil vWii bli "bricket". Dette kan du fikse ved å enten pakke ut IOS 80 fila fra NAND backupen din og erstatte den over FTP eller ved å [installere IOS 80 på nytt](../../recover-vwii-ioses-channels). - -1. Kjør Patched IOS 80 Installer for vWii. -2. Les advarselen og vent 30 sekunder. -3. Trykk en knapp for å installere. -4. Vent til det står IOS80 Installation is complete!. -5. Trykk en knapp for å avslutte. - -!> Det er stor sjangse for å bricke vWii hvis man installerer en custom System Menu og du bør alltid ha en backup av systemet før du prøver å installerer en, men hvis du installerer det riktig så vil det ikke være noen risiko. - -!> Installering av IOS (inkludert TED IOS'er) eller wads formattert for den originale Wii'en vil "bricke" vWii'en din. WiiWare wads er greit, men noen må konverteres for å fungere. diff --git a/translations/no_NO/docs/user-guide/vwii/sd-preparation.md b/translations/no_NO/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index c9763f52049..00000000000 --- a/translations/no_NO/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modifiserings Guide {docsify-ignore-all} - ---- - -## SD Forberedelser - -Denne siden vil hjelpe deg med å modifisere vWii. - -Vi starter med å plassere Homebrew filene du trenger på SD-kortet ditt. - -?> **Merk** -SD-kortet må være FAT32 formatert. Hvis SD-kortet ikke er FAT32 formatert, bruk [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) Allocation unit size til å formatere det riktig. **Ikke** sett navnet på SD-kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -?> Hvis du har hacket Wii U'en din tidligere, kan du bruke det samme SD-kortet i denne prosessen. - -?> I motsetning til Wii U homebrew, vWii apper skal inn i en separat `apps` mappe på roten av SD-kortet. Compat Installer er den **eneste** Wii U appen her. - -### Dette trenger du - -- Siste utgave av [Aroma for your café](https://aroma.foryour.cafe). - - Trykk på `Download Payloads` og `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - Hvis du allerede har installert Aroma, trenger du ikke å laste den ned på nytt. -- Siste utgave av [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- Patched IOS 80 Installer for vWii. ([Kilde](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- d2x cIOS Installer. - -## Instruksjoner - -1. Sett SD-kortet ditt i PC'en din. -2. Pakk ut `apps` mappen fra `Patched_IOS80_Installer_for_vWii.zip` til roten av SD kortet. -3. Pakk ut `d2x-cios-installer` fra `d2x_cIOS_Installer.zip` fila til apps mappen på roten av SD-kortet. -4. Pakk ut Base Aroma og payloads `.zip` filene til roten av SD-kortet. -5. Pakk ut `CompatTitleInstaller.zip` fila til roten av SD-kortet. -6. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. diff --git a/translations/no_NO/docs/user-guide/vwii/sidebar.md b/translations/no_NO/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index 71b8893a2fd..00000000000 --- a/translations/no_NO/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modifisering** -- [Hjemmesiden](../introduction) -- [Modding vWii](vwii-modding) -- **Lenker** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Oversett](https://icongr.am/material/translate.svg?color=808080&size=16)Oversett](https://hacks-guide.crowdin.com/u/projects/10) -- [Donere](../donations) -- [Om denne guiden](../about) diff --git a/translations/no_NO/docs/user-guide/vwii/vwii-modding.md b/translations/no_NO/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/no_NO/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/no_NO/docs/vwii/vwii-modding.md b/translations/no_NO/docs/vwii/vwii-modding.md deleted file mode 100644 index d8975f9f7e0..00000000000 --- a/translations/no_NO/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modifiserings Guide ---- -Denne siden vil hjelpe deg med å modifisere vWii. - -Vi starter med å plassere Homebrew filene du trenger på SD-kortet ditt. - -?> **Merk** SD-kortet ditt må formateres til FAT32. Hvis den ikke er formatert til FAT32, bør du bruke [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) med 32k (32768) "Allocation unit size" for å formatere den. **Ikke** sett navnet på SD kortet til `wiiu`, det vil skape problemer med noen homebrew apper. - -?> Hvis du har hacket Wii U'en din tidligere, kan du bruke det samme SD-kortet i denne prosessen. - - - -### Dette Trenger Du {docsify-ignore} - -- De nyeste filene i [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Klikk på `Download Tiramisu`. - - Hvis du allerede har installert Tiramisu, trenger du ikke å laste den ned på nytt. -- Siste utgave av [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- Patched IOS 80 Installer for vWii. ([kilde](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- d2x cIOS Installer. - -### Forberede SD-kortet {docsify-ignore} - -1. Sett SD-kortet ditt i PC'en din. -1. Pakk ut `apps` mappen fra Patched_IOS80_Installer_for_vWii.zip til roten av SD kortet. -1. Pakk ut `d2x-cios-installer` fra d2x_cIOS_Installer.zip fila til apps mappen på SD-kortet. -1. Pakk ut Tiramisu *`.zip`* fila til roten av SD-kortet. -1. Kopier `compat_installer.elf` fila til `wiiu/apps` mappen i roten av SD-kortet. -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. - -### NAND Backup - -Hvis noe går galt senere i prosessen og vWii "bricker", vil gjenoppretting av en NAND backup muligens fikse den. - -?> Hvis du nylig har laget en NAND sikkerhetskopi som inneholder SLCCMPT og OTP, kan du hoppe over dette trinnet. - -1. Kjør [Wii U NAND Dumper](vwii/browser-exploit). -1. Bruk D-padden for å sette opp følgende konfigurasjon: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Trykk på A knappen for å starte dumpingprosessen. -1. Når prosessen er fullført, skru av Wii U konsollen, ta ut SD-kortet og sett den inn i PC-en din. -1. For å være sikker på at du ikke mister filene, kopier `slccmpt.bin` og, `otp.bin`, og hvis du velger å ta en full backup, `seeprom.bin`, `slc.bin`, og `alle mlc.bin.part` filene til pc'en din. -1. Slett filene fra SD-kortet for å frigjøre plass. -1. Ta SD-kortet ut av PC'en og sett den inn i Wii U konsollen. - -### Installere Homebrew Channel - -1. Start opp [Tiramisu](vwii/browser-exploit). -1. Kjør Homebrew Launcher ved å starte Mii Maker. -1. Kjør compat_installer. -1. Trykk `A` for å installere Homebrew Channel og vent til du ser `Install succeeded`. Så trykker du HOME-knappen for å gå tilbake til Wii U menu. -1. Start vWii (Wii menu ikonet). - - Hvis installasjonen ble ferdig, bør du se Homebrew Channel kanalen i Wii Menu. - -### Installerer cIOS'er - -!> sørg for at du ikke har noen `.wad` filer noe annet sted enn i `apps` mappen på SD-kortet ditt. - -1. Slå på Wii U konsollen og start vWii. -1. Start Homebrew Channel. -1. Kjør d2x cIOS Installer. -1. Velg følgende instillinger: - - Velg cIOS: `d2x-v11-beta1-vWii` - - Velg cIOS base `56` - - Velg cIOS slot `249` -1. Trykk på `A`-knappen for å installere dem. -1. Velg følgende instillinger: - - Velg cIOS: `d2x-v11-beta1-vWii` - - Velg cIOS base `57` - - Velg cIOS slot `250` -1. Trykk på `A`-knappen for å installere dem. -1. Velg følgende instillinger: - - Velg cIOS: `d2x-v11-beta1-vWii` - - Velg cIOS base `58` - - Velg cIOS slot `251` -1. Trykk på `A`-knappen for å installere dem. -1. Trykk på `B`-knappen for å avslutte. - -### Patche IOS 80 - -!> Hvis Wii U konsollen din slår seg av mens du patcher IOS 80, vil vWii bli "bricket". Dette kan du fikse ved å enten pakke ut IOS 80 fila fra NAND backupen din og erstatte den over FTP, eller ved å [reinstallere IOS 80](recover-vwii-ioses-channels) på nytt. - -1. Kjør Patched IOS 80 Installer for vWii. -1. Les advarselen og vent 30 sekunder. -1. Trykk en knapp for å installere. -1. Vent til det står IOS80 Installaton is complete!. -1. Trykk en knapp for å avslutte. - -!> Det er stor sjangse for å bricke vWii hvis man installerer en custom System Menu og du bør alltid ha en backup av systemet før du prøver å installerer en, men hvis du installerer det riktig så vil det ikke være noen risiko. - -!> Installering av IOS (inkludert TED IOS'er) eller wads formattert for den originale Wii'en vil "bricke" vWii'en din. - -!> Priiloader versjoner før 0.10.0 fungerer ikke med vWii. Priiloader versjoner før 0.8.2 vil bricke vWii. diff --git a/translations/pl_PL/docs/extras/about.md b/translations/pl_PL/docs/extras/about.md deleted file mode 100644 index d6f0aa13a06..00000000000 --- a/translations/pl_PL/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# O tym poradniku ---- -Ten poradnik został napisany przez członków [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Podziękowania** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Dziękujemy, również [wszystkim innym](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) którzy przyczynili się do powstania tego poradnika na GitHub. - -?> [Poradnik znajdziesz na GitHub](https://github.com/hacks-guide/Guide-WiiU), na licencji zgodnej z [Licencją ISC](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** i **Maschell** za [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** i **FIX94** za d2x cIOS Installer. -> -> - **koolkdev** i **FIX94** za [disc2app](https://github.com/koolkdev/disc2app). -> -> - **Docsify team** za [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** za [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** i **smealum** za [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** za [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), i [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), i [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** i **dimok789** za [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** za [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** i **orboditilt** za [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** i **FIX94** za Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** i **brienj** za [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** za [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** i **Maschell** za [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** za [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** za [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/pl_PL/docs/extras/block-updates.md b/translations/pl_PL/docs/extras/block-updates.md deleted file mode 100644 index d262dd3505c..00000000000 --- a/translations/pl_PL/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blokowanie Aktualizacji ---- -W przeciwieństwie do np. exploitów Nintendo Switch RCM, wszystkie obecnie znane exploity Wii U mogą być nadpisane przez aktualizację systemu. Chociaż Wii U nie jest już oficjalnie wspierane, Nintendo może nadal wydawać aktualizacje dla tej konsoli. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instrukcje {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/pl_PL/docs/extras/configurable-payload.md b/translations/pl_PL/docs/extras/configurable-payload.md deleted file mode 100644 index 3497042c469..00000000000 --- a/translations/pl_PL/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Modyfikacja Payload ---- -Modyfikacja tego payload'u jest możliwa, podobnie do stosowanego w Haxchi. Może się spodobać użytkownikom Mocha, ponieważ oszczędza czas na uruchomienie Mocha poprzez Homebrew Launcher. - -### Czego Potrzebujesz {docsify-ignore} - -- Zmodyfikowany payload. -- Najnowsza wersja [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instrukcje {docsify-ignore} - -1. Rozpakuj plik `homebrew_launcher_channel.v2.1_fix.zip` do folderu `install` w katalogu głównym karty SD. -1. Umieść kartę SD w Wii U i uruchom [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Znajdź i uruchom aplikację WUP Installer GX2. -1. Wybierz `Homebrew Launcher Channel`. Naciśnij `Install` i wybierz NAND jako miejsce instalacji. Spowoduje to instalację kanału Homebrew Launcher w menu Wii U. -1. Po zakończeniu instalacji naciśnij przycisk HOME i wróć do menu głównego Wii U. -1. W tym momencie kanał nie uruchomi się, z powodu konfliktu z wersją używaną na karcie SD. Uruchom ponownie Wii U. -1. Wyjmij kartę SD ze swojego Wii U i włoż ją do komputera. -1. Rozpakuj plik `Configurable_Payload.zip` do katalogu głównego karty SD. Jeśli będziesz poproszony o nadpisanie plików na karcie SD, zrób to. -1. Umieść kartę SD w Wii U i uruchom przeglądarkę internetową, a następnie przejdź do strony `wiiuexploit.xyz`. -1. Kliknij na `Uruchom Homebrew Launcher!`. Jeśli wszystko zostało zrobione prawidłowo, powinieneś zostać przeniesiony do menu Wii U. Mocha została włączona i możesz używać Homebrew Launcher Channel, który zainstalowałeś wcześniej. - - Jeśli Twój Wii U utknie na białym ekranie lub się zawiesi, odczekaj kilka sekund. Jeśli nic się nie zmieni po kilku/kilkunastu sekundach, zrestartuj konsolę, [zresetuj zapisane dane przeglądarki](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) i spróbuj ponownie. diff --git a/translations/pl_PL/docs/extras/donations.md b/translations/pl_PL/docs/extras/donations.md deleted file mode 100644 index b8dd9ea31cf..00000000000 --- a/translations/pl_PL/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Dotacje {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/pl_PL/docs/extras/dump-games.md b/translations/pl_PL/docs/extras/dump-games.md deleted file mode 100644 index 498393af4d7..00000000000 --- a/translations/pl_PL/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Zrzucanie Zawartości Płyt Wii U ---- -Zrzucanie zawartości twoich płyt pozwala na zainstalowanie kopii gry w pamięci NAND/USB, dzięki czemu możesz grać bez potrzeby wkładania płyty. - -?> Zrzucanie i instalacja gier wymaga działającej konfiguracji Homebrew, więc upewnij się, że ukończyłeś główny poradnik na temat instalacji CFW zanim przejdziesz dalej. - -!> **NIELEGALNE** jest udostępnianie plików zrzuconych za pomocą tego poradnika. -Jeśli zamierzasz użyć tego przewodnika do dzielenia się twoimi zrzuconymi grami, nie rób tego. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Instalacja gry w pamięci systemowej (NAND) nie jest zalecana, ponieważ jest ona ograniczona do 8GB lub 32GB w zależności od modelu, co sprawia, że miejsce na gry skończy się bardzo szybko. - -?> Podczas instalacji gry na urządzeniu USB zalecamy użycie dysków HDD, a nie dysków flash/SSD, ponieważ nie są one zoptymalizowane do ciągłego odczytywania i zapisywania danych, co sprawia, że szybko się zużywają. Jeśli twój dysk HDD nie jest zasilany z zewnątrz, będziesz potrzebował kabla Y, aby podłączyć go do dwóch gniazd USB na Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### Czego Potrzebujesz {docsify-ignore} - -- Karta SD z odpowiednią ilością miejsca na gry, które będziesz zrzucał. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instrukcje {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Włącz Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/pl_PL/docs/extras/dump-wii-games.md b/translations/pl_PL/docs/extras/dump-wii-games.md deleted file mode 100644 index 2965e1887ff..00000000000 --- a/translations/pl_PL/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Zrzucanie Zawartości Płyt z Grami Wii ---- -Zrzucanie zawartości płyt z grami pozwala na: granie na emulatorze Wii (mianowicie Dolphin), odtwarzanie ich przy użyciu aplikacji Homebrew dla Wii takich jak np. Wiiflow, instalowanie ich bezpośrednio na Wii U na sformatowanym dysku USB Wii U lub w pamięci NAND i uruchomione z menu Wii U. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> **NIELEGALNE** jest udostępnianie plików zrzuconych za pomocą tego poradnika. -Jeśli zamierzasz użyć tego poradnika do dzielenia się twoimi zrzuconymi grami, nie rób tego. - -### Czego Potrzebujesz {docsify-ignore} - -1. Najnowsza wersja [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. Plik [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat). - -### Instrukcje {docsify-ignore} - -1. Włóż kartę SD Wii U do komputera. -1. Skopiuj folder `apps` z pliku `CleanRip-v2.1.1.zip` do katalogu głównego Twojej karty SD. -1. Skopiuj plik `wii.dat` do katalogu głównego karty SD. -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. - -### Zrzucanie Zawartości Płyt z Grami Wii - -1. Włącz Wii U, następnie wybierz ikonę Wii Menu do uruchomienia vWii. -1. Uruchom kanał Homebrew. -1. Uruchom CleanRip. -1. Przeczytaj zastrzeżenie, a następnie naciśnij przycisk A. -1. Wybierz "Yes", aby włączyć Checksum Calculations. -1. Wybierz USB lub SD w zależności od urządzenia, którego chcesz użyć do procesu zrzucania. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Naciśnij A, aby kontynuować. -1. Zaznacz "No" na ekranie, który prosi Cię o pobranie plików redump.org DAT. -1. Włóż płytę, a następnie naciśnij przycisk A. -1. Wejdź [na tą stronę](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games), aby sprawdzić, czy twoja płytka jest dwuwarstwowa. -1. Ustaw wszystko tak jak poniżej: - - Dual Layer: `Yes/No` (Select `Yes` jeżeli twoja płyta jest dwuwarstwowa) - - Chunk Size: `Max` - - New device per chunk: `No` -1. Jeśli chcesz zrzucić więcej płyt, wybierz Yes, aby zapamiętać swoje ustawienia. Jeśli nie, wybierz "No". - -?> Przygotuj się na chwilę oczekiwania. Proces zrzucania może potrwać od 30 minut do 1 godziny w zależności od prędkości twojej karty SD. - -### Łączenie Podzielonych Plików - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. Należy je połączyć. - -#### Windows {docsify-ignore} - -1. Skopiuj wszystkie pliki, które mają tę samą nazwę i kończą się na `.partX.iso` do jednego folderu na komputerze. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Skopiuj wszystkie pliki, które mają tę samą nazwę i kończą się na `.partX.iso` do jednego folderu na komputerze. -1. Otwórz terminal. -1. Użyj polecenia `cd ` i zastąp `` ścieżką do plików `.partX.iso`. -1. Użyj następnie polecenia: `cat *.part?.iso > game.iso`. diff --git a/translations/pl_PL/docs/extras/faq.md b/translations/pl_PL/docs/extras/faq.md deleted file mode 100644 index b23871be8b2..00000000000 --- a/translations/pl_PL/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Najczęściej Zadawane Pytania {docsify-ignore-all} ---- - -### Czy homebrew niesie ze sobą jakieś zagrożenia? - -Obecnie, uruchomienie oprogramowanie Homebrew nie naraża Cię na ryzyko zablokowania konsoli przez Nintendo, chyba że oszukujesz w gra lub w sklepie eShop. Zawsze jednak powinieneś zachować ostrożność podczas uruchamiania pobranego homebrew, zwłaszcza jeśli nie ufasz źródłom, ponieważ homebrew może potencjalnie uszkodzić twój system! - -### Czym są exploity? - -Exploity to punkty wejścia, które pozwalają na uruchamianie aplikacji homebrew. W głównym poradniku użyjesz exploitów takich jak exploity przeglądarki (http://wiiuexploit.xyz) i PayloadLoader (Health & Safety exploit). Wszystkie aktualne exploity ładują `SD:/wiiu/payload.elf`, który przejmuje dalsze ładowanie homebrew. - -### Czym są payload'y? - -Payload'y, o nazwie `payload.elf`, istnieją aby ułatwić ładowanie różnych exploitów, coz kolei umożliwia łatwiejszą konfigurację systemu pod swoje potrzeby. Nie ma znaczenia, jaki exploit ładuje payload, efekt jest zawsze taki sam. Możesz wybierać między róznymi Payload'ami za pomocą PayloadLoaderPayload. Payload używany w głównym przewodniku to CustomRPXLoader, który ładuje `SD:/wiiu/payload.rpx` a `payload.rpx` użyty w poradniku to EnvironmentLoader, który umożliwia ładowanie różnych środowisk. - -### Czym są środowiska? - -Środowisko jest kolekcją "modułów konfiguracji", które będą uruchamiane w określonej kolejności podczas uruchamiania środowiska. Such environments are Aroma and Tiramisu. Moduły konfiguracyjne są małymi częściami homebrew/kodu, które są wykonywane w celu utworzenia środowiska. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Instalacja kopii zapasowych gier:** 32GB (można użyć mniejszego rozmiaru, ale niektóre tytuły mają rozmiar 20GB) - - **Uruchamianie modyfikacji gry:** 8GB (urządzenie FAT32 na USB może być również używane do modów) - - **Uruchamianie tylko aplikacji homebrew** Dowolny rozmiar. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### Podczas pobierania niektórych plików powstają duplikaty niektórych z nich o nazwie "info.json" & "manifest.install", co mam z nimi zrobić? - -Nic specjalnego, możesz je tam zostawić, usunąć lub zastąpić nowymi. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/pl_PL/docs/extras/find-wiiu-ip-address.md b/translations/pl_PL/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index d399ad96b8c..00000000000 --- a/translations/pl_PL/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# Jak znaleźć adres IP twojego Wii U ---- -Szybki poradnik jak znaleźć adres IP konsoli Wii U. - -### Czego potrzebujesz - -1. Najnowsza wersja [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Wyodrębnij plik `ftpiiu.zip` do katalogu głównego karty SD. - -### Instrukcje - -1. Uruchom Homebrew Launcher. -1. Uruchom FTPiiU. -1. Adres IP Twojego Wii U będzie wyświetlany na dole ekranu. -1. Aby wyjść z FTPiiU, naciśnij przycisk HOME. \ No newline at end of file diff --git a/translations/pl_PL/docs/extras/unblock-updates.md b/translations/pl_PL/docs/extras/unblock-updates.md deleted file mode 100644 index a4ea6ef283e..00000000000 --- a/translations/pl_PL/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Odblokowanie aktualizacji ---- -Musisz to zrobić, jeśli kiedykolwiek będziesz potrzebował dokonać aktualizacji systemu. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instrukcje {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Naciśnij A, aby wybrać `Check`. -1. Wybierz `Boot options`. -1. Będziesz zapytany o to, czy chcesz zmienić aplikację/tutuł boot'owania. Naciśnij A wybierając `Switch back to Wii U Menu`. -1. Po zakończeniu procesu, naciśnij A, aby zamknąć konsolę. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/pl_PL/docs/extras/uninstall-cbhc.md b/translations/pl_PL/docs/extras/uninstall-cbhc.md deleted file mode 100644 index 6b6fb8e77cf..00000000000 --- a/translations/pl_PL/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Odinstalowanie CBHC ---- -Ta strona przeprowadzi Cię przez proces odinstalowania CBHC z Wii U. - -### Instrukcje {docsify-ignore} - -1. Uruchom Homebrew Launcher. -1. Uruchom instalator CBHC. -1. Wybierz grę DS Virtual Console, z której chcesz odinstalować CBHC, a następnie naciśnij przycisk `A`. -1. Przeczytaj ostrzeżenia, a następnie naciśnij przycisk `B`. -1. Sprawdź, czy Twoje Wii U nie boot'uje się automatycznie do CBHC, poprzez ponowne uruchomienie konsoli. -1. Jeśli nie ma ekranu autobootingu i pojawiło się menu konsoli, możesz uruchomić System Settings następnie przejść do Data Mangement, a następnie bezpiecznie odinstalować aplikację o nazwie `DON'T TOUCH ME`. - -?> Jeśli wyświetlił sie komunikat, "A system-memory error has occurred. Wyłącz konsolę, a następnie spróbuj ponownie. Podczas usuwania aplikacji `DON'T TOUCH ME` uruchom ponownie system i spróbuj ponownie usunąć aplikację. **Proszę** upewnij się, że wykonałeś wszystkie kroki po kolei zanim usuniesz aplikację "DON'T TOUCH ME". \ No newline at end of file diff --git a/translations/pl_PL/docs/extras/uninstall-indexiine.md b/translations/pl_PL/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 29f6dcfa506..00000000000 --- a/translations/pl_PL/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Odinstalowanie Indexiine ---- -Ta strona przeprowadzi Cię przez proces odinstalowania Indexiine z Wii U. - -### Instrukcje {docsify-ignore} - -1. Uruchom Homebrew Launcher. -1. Uruchom Indexiine-Installer. -1. Naciśnij przycisk B, aby odinstalować Indexiine. -1. Sprawdź, czy Twoje Wii U nie uruchamia automatycznie Homebrew Launcher po wejściu do przeglądarki internetowej. diff --git a/translations/pl_PL/docs/extras/uninstall-payloadloader.md b/translations/pl_PL/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index d454e99acc8..00000000000 --- a/translations/pl_PL/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Odinstalowanie PayloadLoader ---- -Ta strona przeprowadzi Cię przez proces odinstalowania PayloadLoader z Wii U. - -!> Przywrócenie ustawień fabrycznych **nie** odinstaluje PayloadLoader. Aby go całkowicie odinstalować, postępuj zgodnie z tym poradnikiem. - -### Czego Potrzebujesz {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Anuluj autobotowanie do PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Naciśnij A wybierająć `Check`. -1. Wybierz `Boot options`. -1. Będziesz zapytany o to, czy chcesz zmienić aplikację/tutuł boot'owania. Naciśnij A wybierając `Switch back to Wii U Menu`. -1. Po zakończeniu procesu, naciśnij A, aby zamknąć konsolę. -1. Konsola uruchomi się ponownie do menu Wii U. PayloadLoader może być uruchomiony poprzez uruchomienie aplikacji Health & Safety App. - -### Odinstalowanie PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Naciśnij A, aby wybrać `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. Po zakończeniu procesu, naciśnij A, aby zamknąć konsolę. diff --git a/translations/pl_PL/docs/privacy/privacy-policy.md b/translations/pl_PL/docs/privacy/privacy-policy.md deleted file mode 100644 index 02bd4b7b338..00000000000 --- a/translations/pl_PL/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# UWAGI DOTYCZĄCE PRYWATNOŚCI {docsify-ignore-all} - -**Ostatnia aktualizacja 18 stycznia 2020 r** - - -Dziękujemy za to, że zdecydowałeś się być częścią naszej społeczności w Wii U Hacks Guide („firma”, "my", "nas" lub "nasze"). Jesteśmy zaangażowani w ochronę Twoich danych osobowych i prawa do prywatności. Jeśli masz jakiekolwiek pytania lub obawy dotyczące naszej polityki lub naszych praktyk w odniesieniu do Twoich danych osobowych, prosimy o kontakt pod adresem nh.wiiuguide@gmail.com. - -Kiedy odwiedzasz naszą stronę https://wiiu.hacks.guide, i korzystasz z naszych usług, ufasz nam dzieląc się swoimi osobistymi informacjami. Bardzo poważnie traktujemy Twoją prywatność. W tej informacji o prywatności opisujemy naszą politykę prywatności. Staramy się wyjaśnić Ci możliwie najwyraźniej jakie informacje gromadzimy, w jaki sposób korzystamy z nich i jakie masz w związku z tym prawa. Mamy nadzieję, że przeczytasz to uważnie, ponieważ jest to ważne. Jeśli istnieją jakiekolwiek warunki w tej polityce prywatności, z którymi się nie zgadzasz, należy zaprzestać korzystania z naszych witryn i naszych usług. - -Niniejsza polityka prywatności ma zastosowanie do wszystkich informacji zebranych za pośrednictwem naszej strony internetowej (takich jak https://wiiu.hacks. uide) i/lub przez wszelkie powiązane usługi, sprzedaż, marketing lub wydarzenia (w ramach tej polityki prywatności nazywamy je łącznie "**Witryny**"). - -**Proszę uważnie przeczytać tę politykę prywatności.** - - -## TABELA TREŚCI - -[1. JAKIE INFORMACJE ZBIERAMY?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. CZY UŻYWAMY COOKIE I INNYCH METOD ŚLEDZENIA?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. JAKIE SĄ TWOJE PRAWA DO PRYWATNOŚCI?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. CZY REZYDENCI CALIFORNII MAJA SZCZEGÓLNE PRAWA DO PRYWATNOŚCI?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. CZY ROBIMY AKTUALIZACJE TEJ POLITYKI PRYWATNOŚCI?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. JAK MOZESZ SKONTAKTOWAC SIĘ Z NAMI W SPRAWIE TEJ POLITYKI PRYWATNOŚCI?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. JAKIE INFORMACJE ZBIERAMY? :id=_1-what-information-do-we-collect - -***W skrócie:*** *Nie zbieramy żadnych danych osobowych.* - -Nie zbieramy danych osobowych w żadnej formie. Jednak nasz hoster, [strony GitHub](https://pages.github.com/) mogą zbierać dane osobowe. Aby uzyskać więcej informacji, zobacz [Oświadczenie o prywatności GitHub](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. CZY UŻYWAMY COOKIE I INNYCH METOD ŚLEDZENIA? :id=_2-do-we-use-cookies-and-other-tracking-technologies -***W skrócie:*** *Nie używamy plików cookie i innych technologii śledzenia do gromadzenia i przechowywania Twoich informacji.* - -Nie używamy plików cookie i podobnych technologii śledzenia (takich jak dzwonki beacony i pixele) do dostępu do informacji lub ich przechowywania. - - -### 3. JAKIE SĄ TWOJE PRAWA DO PRYWATNOŚCI? :id=_3-what-are-your-privacy-rights - -***W skrócie:*** *W niektórych regionach, takich jak Europejski Obszar Gospodarczy, masz prawa, które umożliwiają Ci lepszy dostęp do Twoich danych osobowych i kontrolę nad nimi. Możesz przejrzeć, zmienić lub usunąć swoje konto w dowolnym momencie.* - -W niektórych regionach (np. w Europejskim Obszarze Gospodarczym) istnieją pewne prawa wynikające z obowiązujących przepisów o ochronie danych. Mogą one obejmować prawo (i) do żądania dostępu i uzyskania kopii danych osobowych, (ii) żądania sprostowania lub usunięcia tych danych; (iii) ograniczenia przetwarzania danych osobowych; oraz (iv) w stosownych przypadkach do przenoszenia danych. W pewnych okolicznościach możesz również mieć prawo wniesienia sprzeciwu wobec przetwarzania danych osobowych. Aby złożyć takie żądanie, użyj [danych kontaktowych](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) podanych poniżej. Rozważymy i podejmiemy działania na każdy wniosek zgodnie z obowiązującymi przepisami o ochronie danych. - -Jeśli polegamy na Twojej zgodzie na przetwarzanie Twoich danych osobowych, masz prawo do wycofania swojej zgody w dowolnym momencie. Należy jednak pamiętać, że nie będzie to miało wpływu na zgodność przetwarzania z prawem przed jego wycofaniem. - -Jeżeli mieszkasz w Europejskim Obszarze Gospodarczym i uważasz, że niezgodnie z prawem przetwarzamy Twoje dane osobowe, masz również prawo złożyć skargę do lokalnego organu nadzorczego ds. ochrony danych. Dane kontaktowe można znaleźć na stronie: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. CZY REZYDENCI CALIFORNII MAJA SZCZEGÓLNE PRAWA DO PRYWATNOŚCI? :id=_4-do-california-residents-have-specific-privacy-rights - -***W skrócie:*** *Tak, jeśli jesteś rezydentem Kalifornii, otrzymujesz specjalne prawa dotyczące dostępu do Twoich danych osobowych.* - -Sekcja 1798.83 Kodeksu cywilnego Kalifornii, znana również pod nazwą „Shine The Light”, zezwala naszym użytkownikom, którzy są mieszkańcami Kalifornii, na zwrócenie się do nas raz do roku i otrzymywanie od nas bezpłatnie, informacje o kategoriach danych osobowych (jeżeli takie istnieją), które ujawniliśmy osobom trzecim do celów marketingu bezpośredniego oraz nazwiska i adresy wszystkich osób trzecich, z którymi dzieliliśmy się danymi osobowymi w bezpośrednio poprzedzającym roku kalendarzowym. Jeśli jesteś rezydentem Kalifornii i chciałbyś złożyć taki wniosek, proszę przesłać do nas pisemny wniosek, korzystając z poniższych danych kontaktowych. - -Jeśli masz mniej niż 18 lat, mieszkasz w Kalifornii i posiadasz zarejestrowane konto na stronach internetowych, masz prawo żądać usunięcia niepożądanych danych, które publikujesz na stronach internetowych. Aby złożyć wniosek o usunięcie takich danych, prosimy o kontakt z nami za pomocą podanych poniżej danych kontaktowych oraz dołączenie adresu e-mail powiązanego z Twoim kontem, a także oświadczenia, że mieszkasz w Kalifornii. Upewnimy się, że dane nie są publicznie wyświetlane na stronach internetowych, ale proszę mieć świadomość, że dane mogą nie zostać całkowicie lub usunięte z naszych systemów. - - -### 5. CZY ROBIMY AKTUALIZACJE TEJ POLITYKI PRYWATNOŚCI? :id=_5-do-we-make-updates-to-this-policy - -***W skrócie:*** *Tak, aktualizujemy tę politykę w miarę potrzeb, aby zachować zgodność z odpowiednimi przepisami.* - -Możemy aktualizować tę politykę prywatności od czasu do czasu. Zaktualizowana wersja zostanie wskazana przez zaktualizowaną datę „Zaktualizowana”, i będzie opublikowana jak tylko będzie dostępna. Jeśli wprowadzimy istotne zmiany w tej polityce prywatności, możemy powiadomić Cię albo poprzez wyeksponowanie powiadomienia o takich zmianach, albo poprzez bezpośrednie przesłanie powiadomienia. Zachęcamy Cię do częstego sprawdzania tej polityki prywatności, aby być informowanym o tym, jak chronimy Twoje informacje. - - -### 6. JAK MOZESZ SKONTAKTOWAC SIĘ Z NAMI W SPRAWIE TEJ POLITYKI PRYWATNOŚCI? :id=_6-how-can-you-contact-us-about-this-policy - -Jeśli masz pytania lub komentarze na temat tej polityki, możesz wysłać do nas wiadomość na adres nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/pl_PL/docs/sidebar.md b/translations/pl_PL/docs/sidebar.md deleted file mode 100644 index aa3e08e4719..00000000000 --- a/translations/pl_PL/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **Poradnik użytkownika** -- [Wprowadzanie](introduction) -- [Aroma](aroma/getting-started) -- [Modyfikacja vWii](vwii/vwii-modding) -- **Rozwiązywanie problemów** -- [Najczęstsze problemy & ich naprawa](common-issues-fixes) -- [Odzyskiwanie vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archiwum** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [Modyfikacja vWii](archive/vwii/sd-preparation) -- **Linki** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Przetłumacz](https://icongr.am/material/translate.svg?color=808080&size=16)Przetłumacz](https://hacks-guide.crowdin.com/u/projects/10) -- [Wesprzyj](donations) -- [O tej stronie](about) -- **Prywatność** -- [Polityka prywatności](privacy-policy) diff --git a/translations/pl_PL/docs/troubleshooting/common-issues-fixes.md b/translations/pl_PL/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index 06d814b4167..00000000000 --- a/translations/pl_PL/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Najczęstsze Błędy i Ich Naprawa {docsify-ignore-all} ---- -### Najczęstsze błędy Haxchi - - - **-3:** "No SD Card detected." Nie wykryto karty SD. Spróbuj wyjąć i włożyć kartę ponownie. Upewnij się, że karta SD jest w formacie FAT32. Jeśli błąd będzie się powtarzał, spróbuj przedmuchać gniazdo na kartę SD, ponieważ może być zabrudzone. - - - **-4:**"SD detected but could not mount." Karta SD wykryta, ale nie można jej zamontować. Sprawdź, czy karta SD używa tablicy MBR, a nie GPT. Sprawdź też, czy istnieją inne partycje na karcie SD, jeżeli tak, połącz je w jedną główną partycję. - - - **-5:** "Missing files on the SD." Brakujące pliki na karcie SD. Sprawdź, czy na karcie SD jest Homebrew Launcher zlokalizowany w /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Błędy przeglądarki - - - **FSGetMountSource failed:** Tak samo jak -3 powyżej, oznacza że nie wykryto karty SD. Spróbuj wyjąć i włożyć kartę ponownie. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Brak pliku payload na karcie SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Brak `homebrew_launcher` na karcie SD. Upewnij się, że masz `homebrew_launcher.elf` w folderze /wiiu/apps/homebrew_launcher. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management prosi o "delete unnecessary data", co to oznacza? - -Tu chodzi o usunięcie plików pozostałych z instalacji które się nie powiodły. Zawsze wybieraj "Yes", aby usunąć te dane, ponieważ zajmują one miejsce niepotrzebnie. Jeśli kiedykolwiek Wii U zawiesi się na usuwaniu danych, możesz je usunąć ręcznie. -Użyj FTPiiU Everywhere i przejdź do`/storage_mlc/usr/import` a następnie usuń wszystkie pliki z folderu, jeśli takie istnieją. W tym miejscu znajdują się pliki po niekompletnych instalacjach. Jeśli jednak instalowałeś gry/aplikacje na USB to pliki będą tu: `/storage_usb/usr/import` -Folder `import` powinien być zawsze pusty. - -### Mój dysk HDD nie działa lub wydaje dziwny dźwięk klikania, co powinienem zrobić? - -Powodem takiego stanu rzeczy jest to, że Wii U nie zapewnia wystarczającej ilości zasilania przez jeden port USB, aby używać dysku twardego. - -Możesz to naprawić za pomocą zewnętrznego zasilania dysku HDD lub za pomocą kabla Y do podłączenia dysku HDD do dwóch portów USB. - -Jeśli twój HDD pracował przez jakiś czas poprawnie i przestał pracować w przypadku niektórych gier/wszystkich gier, jest to ten sam problem jak wyżej i można go rozwiązać tymi samymi metodami. - -### Podczas pobierania niektórych plików powstają duplikaty niektórych z nich o nazwie "info.json" & "manifest.install", co mam z nimi zrobić? - -Nic specjalnego, możesz je tam zostawić, usunąć lub zastąpić nowymi. Pliki te nie są używane, zatem nie jest ważne czy istnieją czy też nie. - -### Moja konsola nagle straciła łączność online, a ja mam na konsoli położony dysk HDD, co powinienem zrobić? - -Antena wewnętrzna mogła zostać zakłócona przez magnesy dyskowe. -Możesz przesunąć HDD w inne miejsce na Wii U lub całkowicie zdjąć go z Wii U. diff --git a/translations/pl_PL/docs/troubleshooting/fix-errcode-112-1037.md b/translations/pl_PL/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index dd667ff6fab..00000000000 --- a/translations/pl_PL/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# Jak naprawić kod błędu 112-1037 ---- -Ta strona poprowadzi Cię przez proces naprawy błędu 112-1037. - -### Czego Potrzebujesz {docsify-ignore} - -- Działająca [instalacja homebrew](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- Najnowsza wersja [Python](https://www.python.org/downloads/). - -### Instrukcje {docsify-ignore} - -1. Zainstaluj Python na swoim komputerze. - -### Naprawianie kodu błędu - - - -#### **Windows** - -### Windows - -1. Włącz Wii U. -1. Uruchom Homebrew Launcher i uruchom aplikację MochaFAT32. -1. Wróć do menu Wii U. -1. Otwórz okno wiersza poleceń. -1. Użyj następującej komendy: `cd `. - - Przykład: cd C:\Users\username\Downloads. -1. Użyj następującej komendy: `py -3 -i wupclient.py`. -1. Wprowadź adres IP swojego Wii U. - - Nie wiesz, jak go znaleźć? Przeczytaj [to](find-wiiu-ip-address). -1. Użyj odpowiedniego polecenia w zależności od regionu twojej konsoli: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. Jeśli komenda zadziała, otrzymasz następującą odpowiedź: `chmod returned 0x0`. -1. Błąd powinien zostać usunięty. - -#### **macOS & Linux** - -### macOS & Linux - -1. Włącz Wii U. -1. Uruchom Homebrew Launcher i uruchom aplikację MochaFAT32. -1. Wróć do menu Wii U. -1. Otwórz terminal. -1. Użyj następującej komendy: `cd `. - - Na macOS najczęstszym miejscem do znalezienia pobranych plików jest /Users/username/Downloads. - - Na Linuxie, najczęstszym miejscem do znalezienia pobranych plików jest /home/username/Downloads. -1. Użyj następującej komendy: `python3 -i wupclient.py`. -1. Wprowadź adres IP swojego Wii U. - - Nie wiesz, jak go znaleźć? Przeczytaj [to](find-wiiu-ip-address). -1. Użyj odpowiedniego polecenia w zależności od regionu twojej konsoli: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. Jeśli komenda zadziała, otrzymasz następującą odpowiedź: `chmod returned 0x0`. -1. Błąd powinien zostać usunięty. - - \ No newline at end of file diff --git a/translations/pl_PL/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/pl_PL/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index af072566863..00000000000 --- a/translations/pl_PL/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Przywracanie Kanału/IOS na vWii ---- -Ta strona poprowadzi Cię przez proces odzyskiwania IOS lub kanału na Twoim vWii, nie ważne czy został uszkodzony lub usunięty z jakiegokolwiek powodu. - -!> Ten proces może zniszczyć pamięć NAND vWii, jeśli nie będziesz ostrożny! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> Jeśli używasz blokady aktualizacji systemu, proszę [zdejmi ją ](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### Czego Potrzebujesz {docsify-ignore} - -- Działająca [instalacja homebrew](introduction) po stronie Wii U. -- Najnowsze wydanie [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instrukcje {docsify-ignore} - -1. Skopiuj zawartość pliku `decaffeinator.zip` do katalogu głównego karty SD. -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. -1. Włącz Wii U i uruchom wybrane przez siebie CFW (Mocha, Haxchi lub CBHC). -1. Uruchom Homebrew Launcher. -1. Uruchom vWii Decaffeinator. - -### Proces odzyskiwania - -Masz kilka opcji. Jeśli wiesz, co przywrócić, zaleca się pierwszą próbę przywrócenia za pomocą menu `Advanced options`, lub `Light mode` jeśli nie jesteś pewien. W skrajnych przypadkach, w których żadna inna opcja nie rozwiązuje problemu, należy wybrać `Aggressive mode`. - - - -#### **Opcje zaawansowane** - -### Opcje zaawansowane - -?> Ten tryb wyczyści określone IOS'y i kanały w celu ich ponownej instalacji. Wszystkie pozostałe dane (w tym cIOS'y) zostaną zachowane. - -
-Kliknij tutaj, aby zobaczyć, co można odzyskać za pomocą tej metody. - -![Opcje zaawansowane](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Wybierz `Advanced options` w menu. -1. Użyj D-Pada, aby przełączyć się na to, co chcesz przywrócić. -1. Naciśnij Start, aby rozpocząć proces przywracania. -1. Kiedy proce się zakończy, zezwól aplikacji na uruchomienie System Settings. -1. Wykonaj [aktualizację systemu](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update), aby zakończyć proces przywracania. - -?> Możesz teraz ponownie włączyć [blokadę aktualizacji systemu](block-updates). - -#### **Light mode** - -### Light mode - -?> Ten tryb wyczyści System Menu, zapisane dane Wii Message Board, IOS i inne aplikacje systemowe, aby ponownie zainstalować ich czyste wersje. Pamiętaj, że to również usunie wszystkie cIOSy i muszą one zostać ponownie zainstalowane. Wszystkie pozostałe dane zostaną zachowane. - -1. Wybierz `Light mode` w menu. -1. Naciśnij Start, aby rozpocząć proces przywracania. -1. Kiedy proces się zakończy, zezwól aplikacji na uruchomienie System Settings. -1. Wykonaj [aktualizację systemu](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update), aby zakończyć proces przywracania. - -?> Możesz teraz ponownie włączyć [blokadę aktualizacji systemu](block-updates). - -> Jeśli otrzymasz kod błędu 160-0101 podczas uruchamiania systemu po użyciu vWii Decaffeinator, wyjmij z czytnika płytę i odłącz wszelkie zewnętrzne napędy oraz uruchom ponownie system. - -#### **Aggressive mode** - -### Aggressive mode - -!> Ten tryb wyczyści **wszystko** aby ponownie zainstalować czyste wersje domyślnych IOSes i kanałów. Pamiętaj, że wszystkie cIOS, zapisane dane i kanały zostaną utracone, a vWii NAND zostanie przywrócony do stanu fabrycznego! - -1. Wybierz `Aggressive mode` w menu. -1. Przeczytaj ostrzeżenie w całości. Jeśli chcesz kontynuować, naciśnij przycisk Start, aby rozpocząć proces przywracania. -1. Kiedy proces się zakończy, zezwól aplikacji na uruchomienie System Settings. -1. Wykonaj [aktualizację systemu](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update), aby zakończyć proces przywracania. - -?> Możesz teraz ponownie włączyć [blokadę aktualizacji systemu](block-updates). - -> Jeśli otrzymasz kod błędu 160-0101 podczas uruchamiania systemu po użyciu vWii Decaffeinator, wyjmij z czytnika płytę i odłącz wszelkie zewnętrzne napędy oraz uruchom ponownie system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/pl_PL/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/pl_PL/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index 50d266e9f3a..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archiwum - CBHC - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Exploit przeglądarki {docsify-ignore} - -Aby zainstalować CFW, najpierw musimy uruchomić Homebrew Launcher poprzez exploit przeglądarki. Upewnij się, że Twój Wii U ma dostęp do Internetu, aby wykonać ten krok. - -### Instrukcje {docsify-ignore} - -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. -1. Uruchom przeglądarkę internetową i przejdź do strony `wiiuexploit.xyz`. -1. Kliknij na `Run Homebrew Launcher!`. Twoja konsola powinna uruchomić Homebrew Launcher. - - Jeśli Twój Wii U utknie na białym ekranie lub się zawiesi, odczekaj kilka sekund. Jeśli nic się nie zmieni po kilku/kilkunastu sekundach, zrestartuj konsolę, [zresetuj zapisane dane przeglądarki](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) i spróbuj ponownie. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/pl_PL/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 74424760c8f..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archiwum - CBHC {docsify-ignore-all} - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Wybierz swoją grę DS VC - -Na początek musisz wybrać grę DS Virtual Console (w skrócie "VC"), którą kupisz. -Pamiętaj, że gra którą kupisz i zainstalujesz w niej Haxchi/CBHC, nie będzie już grywalna dopóki nie odinstalujesz Haxchi/CBHC i ponownie nie zainstalujesz gry z eShop. - -### Kompatybilne gry DS VC - -?> Jeśli masz konsolę z regionu Europejskiego, jest szansa, że masz już za darmo Dr. Kawashima's Brain Training: How Old is Your Brain?. Udaj się [do eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) i sprawdź, czy masz jedną z tych gier. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/pl_PL/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/pl_PL/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index beee6bb54ae..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archiwum - CBHC - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Instalacja kanału Homebrew Launcher {docsify-ignore} - -Na tej stronie dowiesz się jak zainstalować kanał Homebrew Launcher jako aplikację, bezpośrednio do Home Menu. - -?> Ten poradnik jest tylko dla użytkowników Haxchi i CBHC. Homebrew Launcher Channel (wersja Homebrew Channel uruchamiana przez Wii U Menu) **nie** będzie działać z Mocha CFW! - -### Instrukcje {docsify-ignore} - -1. Włącz konsolę. -1. Naciśnij przycisk Home podczas ekranu `Autobooting...`, aby dostać się do menu uruchamiania. -1. Wybierz `Boot Homebrew Launcher`, aby uruchomić Homebrew Launcher. -1. Przejdź do Homebrew Launcher, znajdź i uruchom aplikację WUP Installer GX2. -1. Użyj ekranu dotykowego, aby wybrać `Homebrew Launcher Channel`. Naciśnij `Install` i potwierdź naciskając `Yes`. -1. Wybierz NAND jako miejsce docelowe instalacji. Spowoduje to instalację kanału Homebrew Launcher w menu Wii U. -1. Po zakończeniu instalacji naciśnij przycisk HOME i wróć do menu głównego Wii U. -1. Teraz zobaczysz Homebrew Launcher zainstalowany w menu Wii U. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/pl_PL/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index ba3952410b2..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archiwum - CBHC - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Uruchamianie CFW {docsify-ignore} - -Mając kopię zapasową NAND na wypadek, gdyby coś poszło nie tak, możesz uruchomić CFW w swoim systemie. - -W przeciwieństwie do takich systemów jak DSi, Wii lub 3DS, Wii U CFW ma charakter tymczasowy. Oznacza to, że gdy tylko system zrestartuje się, CFW przestanie działać i znowu musisz postępować zgodnie z tą instrukcją. Można to ominąć poprzez zainstalowanie CBHC jako dodatek do instalacji Haxchi CFW. - -!> Niepoprawna instalacja CBHC może zblokować Wii U. Przestrzegaj poniższych zasad podczas instalacji CBHC:
- Gra DS musi być zainstalowana z eShop'u!
- Nie formatuj systemu, gdy CBHC jest zainstalowany!
- Nie usuwaj konta użytkownika, który kupił grę DS Virtual Console!
- Nie instaluj ponownie tej samej gry używając WUP Installer lub eShop'u!
- Nie instaluj Haxchi gdy masz już CBHC!
- Nie odinstaluj gry DS Virtual Console bez [poprawnego odinstalowania CBHC najpierw](../uninstall-cbhc)!
- Nie przenoś gry DS Virtual Console na dysk USB! - -!> Złamanie jednej z powyższych zasad spowoduje uszkodzenie Wii U. - -> Jeśli obawiasz się, przypadkowego złamania jednej z powyższych zasad, ustaw Parental Controls dla wybranego użytkownika! Zablokowanie `Data Management` i ustawienie `Game Rating` na najwyższy poziom, pomoże w uniknięciu błędów podczas używania CBHC. Wejdź [tu](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls), aby uzyskać więcej informacji na temat zmiany ustawień Parental Controls. - -### Instrukcje {docsify-ignore} - -1. Wyciągnij kartę SD ze swojego komputera i podłącz ją do Wii U. -1. Jeśli jeszcze tego nie zrobiłeś, pobierz wybraną grę DS Virtual Console z eShop. -1. Uruchom Homebrew Launcher na swoim systemie, zgodnie z tym co [wcześniej opisano](browser-exploit). -1. Przejdź do Homebrew Launcher i otwórz aplikację Haxchi. -1. Użyj D-Pada, aby ustawić kursor na grze, na której chcesz zainstalować Haxchi i naciśnij przycisk A, aby to zrobić. -1. Po zakończeniu instalacji, twoja konsola uruchomi menu Wii U. Zobaczysz, że Twoja gra została zastąpiona przez ikonę Haxchi. -1. Uruchom zmodyfikowaną grę DS. Spowoduje to ponowne uruchomienie konsoli i włączenie CFW. -1. Uruchom ponownie zmodyfikowaną grę DS i przytrzymaj przycisk A po jej uruchomieniu. Spowoduje to uruchomienie Homebrew Launcher. -1. Przejdź do Homebrew launcher i uruchom aplikację CBHC. -1. Użyj D-Pada, aby przejść kursorem do poprzednio zainstalowanej gry i naciśnij przycisk A, aby zainstalować CBHC. -1. Po zakończeniu instalacji, twoja konsola uruchomi menu Wii U. -1. Uruchom ponownie konsolę. Jeśli CBHC jest zainstalowany poprawnie, powinieneś zobaczyć nowe menu uruchomienia. (CBHC nie jest kompatybilny z Quick Start. Jeśli używasz menu Quick Start, proszę je wyłączyć.) -1. Użyj D-Pad, aby przejść do `Autoboot: Disabled` i naciskaj A aż do pojawienia się `Autoboot: System Menu`. -1. Użyj D-Pada, aby przejść do `Boot System Menu` i naciśnij przycisk A. Spowoduje to uruchomienie menu Wii U z włączonym CFW. -1. Twoja konsola od teraz uruchamia się automatycznie do CFW po każdym ponownym uruchomieniu. -1. Możesz teraz ponownie podłączyć wszystkie urządzenia USB, które odłączyłeś przed rozpoczęciem tego poradnika. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/cbhc/nand-backup.md b/translations/pl_PL/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 550a498f021..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archiwum - CBHC - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Tworzenie kopii zapasowej NAND {docsify-ignore} - -W sytuacji, gdyby cokolwiek poszło nie tak w późniejszym procesie i Twoja Wii U zostanie uszkodzona, przywracanie poprzednio utworzonej kopii zapasowej NAND może ją naprawić. - -### Instrukcje {docsify-ignore} - -?> Wii U NAND w zależności od modelu ma pojemność 8GB albo 32GB. W związku z tym, aby utworzyć pełną kopię zapasową NAND Twojej konsoli, Twoja karta SD musi być większa niż rozmiar Twojego NAND. Jeśli nie masz wystarczająco dużej karty SD, możesz pominąć opcjonalną sekcję `MLC`, która zawiera zapisane pliki i dane gry i nie jest potrzebna do odzyskania w przypadku większości uszkodzeń. - -?> Przywracanie kopii zapasowej NAND na Wii U wymaga dodatkowych umiejętności sprzętowych i mikrolutowniczych.
Jednak tworzenie kopii zapasowej NAND jest **zawsze** przydatne, więc nie pomijaj tego etapu.
Twoja kopia zapasowa NAND jest unikalna dla Twojego systemu. Kopie zapasowe z innych konsoli **nie będą** działać. - -1. Przejdź do Homebrew Launcher i uruchom aplikację `Wii U NAND Dumper`. -1. Użyj D-Pada na Wii U GamePad'zie, aby ustawić następującą konfigurację: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Naciśnij przycisk A, aby rozpocząć proces zrzucania na kartę SD. -1. Po zakończeniu procesu, wyłącz Wii U, wyciągnij kartę SD z Wii U i podłącz ją do komputera. -1. Aby upewnić się, że nie utracisz plików, skopiuj `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` i jeśli zdecydowałeś się na pełną kopię zapasową, `również mlc.bin.part` na komputer. -1. Usuń pliki z karty SD aby zwolnić miejsce. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/pl_PL/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index fd04859f2df..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archiwum - CBHC - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Przygotowanie karty SD {docsify-ignore} - -W tym punkcie umieścimy wymagane pliki CFW i dodatkowe pliki homebrew na karcie SD. - -?> **Uwaga** Twoje urządzenie SD będzie musiało być już sformatowane jako FAT32. Jeśli Twoja karta SD nie jest sformatowana do FAT32, użyj [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) z 32k (32768) jednostek przydziału aby ją sformatować. **Nie** oznaczaj karty SD jako `wiiu` bo spowoduje problemy z homebrew. - -### Czego Potrzebujesz {docsify-ignore} - -- Najnowsza wersja [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Będziesz musiał pobrać plik `payload.zip`. -- [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4) w wersji 1.4. - - Musisz pobrać wersję v1.4 `homebrew_launcher.v.1.4.zip`. -- Najnowsze wydanie [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Najnowsza wersja [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Będziesz musiał pobrać plik `homebrew_launcher_channel.v2.1_fix.zip`. -- Najnowsza wersja [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Najnowsza wersja [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Musisz pobrać plik `wiiu-extracttosd.zip`. -- Najnowsza wersja [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- Najnowsze wydanie [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- Najnowsza wersja SaveMii Mod. - -### Instrukcje {docsify-ignore} - -?> **Uwaga** Pliki info.json i manifest.install nie są potrzebne do procesu modyfikacji i dlatego mogą zostać usunięte. - -1. Włóż kartę SD Wii U do komputera. -1. Utwórz folder o nazwie `install` w katalogu głównym karty SD. -1. Skopiuj zawartość pliku `homebrew_launcher_channel.v2.1_fix.zip` do folderu `install`. -1. Skopiuj zawartość pliku `haxchi.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `cbhc.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `wup_installer_gx2.zi` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `nanddumper.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `wiiu-extracttosd.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `homebrew_launcher.v.1.4.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `savemii_mod.zip` do katalogu głównego karty SD. -1. Skopiuj `payload.elf` z `payload.zip` do folderu `wiiu` na karcie SD. ----------- - -### Układ karty SD {docsify-ignore} - -
-Kliknij tutaj, aby wyświetlić końcowy układ plików na karcie SD. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Wszystkie inne aplikacje jak disc2app, nanddumper, etc. powinny być tu) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pl_PL/docs/user-guide/archive/cbhc/sidebar.md b/translations/pl_PL/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 44a8347d975..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Strona główna](../../introduction) -- [Wybierz CFW](../cfw-choice) -- [Wybierz swoją grę DS VC](ds-vc-choice) -- [Przygotowanie SD](sd-preparation) -- [Exploit przeglądarki](browser-exploit) -- [Tworzenie kopii zapasowej NAND](nand-backup) -- [Uruchamianie CFW](launching-cfw) -- [Zainstaluj kanał Homebrew](installing-hblc) -- **Linki** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Przetłumacz](https://icongr.am/material/translate.svg?color=808080&size=16)Przetłumacz](https://hacks-guide.crowdin.com/u/projects/10) -- [Wesprzyj](../../donations) -- [O tej stronie](../../about) \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/cfw-choice.md b/translations/pl_PL/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index cd582af9a15..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Wybierz CFW, który chcesz ---- -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -Istnieją dwa główne rodzaje CFW: Haxchi/Coldboot Haxchi (zazwyczaj zwane jako „CBHC”) oraz Mocha. - -Haxchi/CBHC instaluje się na płatnej grze DS Virtual Console. Haxchi musi zostać uruchomiony ręcznie z menu Wii U, aby uruchomić własne oprogramowanie, podczas gdy CBHC automatycznie uruchomi niestandardowe oprogramowanie podczas uruchamiania systemu. Mocha jest aktywowana za pomocą exploitu przeglądarki lub metodą Indexiine, i jest jedynym darmowym niestandardowym oprogramowaniem firmware. - -Niestandardowe oprogramowanie, którego użyjesz, to **Twój** wybór. Nie ma lepszego lub gorszego CFW, musisz wybrać to, które najlepiej odpowiada Twoim potrzebom! - -## Haxchi - -- Wymaga legalnie zainstalowanej, płatnej gry DS Virtual Console z eShop. -- Używa się go do uruchomienia CFW bezpośrednio z menu Wii U. -- Musi być ponownie uruchamiane z menu Wii U po każdym restarcie, aby włączyć niestandardowe oprogramowanie. -- Jego funkcjonalność można rozszerzyć poprzez zainstalowanie Coldboot Haxchi (CBHC). - -### [**Kontynuuj z Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Niepoprawna instalacja CBHC może zblokować Wii U! Przestrzegaj poniższych zasad podczas instalacji CBHC:
- Gra DS musi być zainstalowana z eShop'u!
- Nie formatuj systemu, gdy CBHC jest zainstalowany!
- Nie usuwaj konta użytkownika, który kupił grę DS Virtual Console!
- Nie instaluj ponownie tej samej gry używając WUP Installer lub eShop'u!
- Nie instaluj Haxchi gdy masz już CBHC! (Nie uszkodzisz konsoli, ale Wii U wejdzie w boot-loop! Przytrzymaj A podczas uruchamiania, aby uzyskać dostęp do Homebrew Launcher i odinstaluj CBHC.)
- Nie odinstaluj gry DS Virtual Console bez [poprawnego odinstalowania CBHC najpierw](../uninstall-cbhc)!
- Nie przenoś gry DS Virtual Console na dysk USB! - -!> Złamanie jednej z powyższych reguł **może** skutkować zablokowaniem konsoli! - -> Jeśli obawiasz się, przypadkowego złamania jednej z powyższych zasad, ustaw Parental Controls dla wybranego użytkownika! Zablokowanie `Data Management` i ustawienie `Game Rating` na najwyższy poziom, pomoże w uniknięciu błędów podczas używania CBHC. Wejdź [tu](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls), aby uzyskać więcej informacji na temat zmiany ustawień kontrolki rodzicielskiej. - -- Wymaga legalnie zainstalowanej, płatnej gry DS Virtual Console z eShop. -- Automatycznie uruchamia niestandardowe oprogramowanie przy każdym uruchomieniu. - -### [**Kontynuuj z CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Nie wymaga żadnej gry, a zatem jest darmowa. -- Musi być uruchamiana przez exploit przeglądarki po każdym restarcie, aby włączyć niestandardowe oprogramowanie firmware. -- Nie jest kompatybilna z Homebrew Launcher Channel. -- Może wymagać połączenia z Internetem w zależności od wybranego przez Ciebie punktu wejścia. - -### [**Kontynuuj z Mochą**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/pl_PL/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/pl_PL/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 9b1da3beec0..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archiwum - Haxchi - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Exploit przeglądarki {docsify-ignore} - -Aby zainstalować CFW, najpierw musimy uruchomić Homebrew Launcher poprzez exploit przeglądarki. Upewnij się, że Twój Wii U ma dostęp do Internetu, aby wykonać ten krok. - -### Instrukcje {docsify-ignore} - -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. -1. Uruchom przeglądarkę internetową i przejdź do strony `wiiuexploit.xyz`. -1. Kliknij na `Run Homebrew Launcher!`. Twoja konsola powinna uruchomić Homebrew Launcher. - - Jeśli Twój Wii U utknie na białym ekranie lub się zawiesi, odczekaj kilka sekund. Jeśli nic się nie zmieni po kilku/kilkunastu sekundach, zrestartuj konsolę, [zresetuj zapisane dane przeglądarki](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) i spróbuj ponownie. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/pl_PL/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index 5424e309b38..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archiwum - Haxchi {docsify-ignore-all} - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Wybierz swoją grę DS VC - -Na początek musisz wybrać grę DS Virtual Console (w skrócie "VC"), którą kupisz. -Pamiętaj, że gra którą kupisz i zainstalujesz w niej Haxchi/CBHC, nie będzie już grywalna dopóki nie odinstalujesz Haxchi/CBHC i ponownie nie zainstalujesz gry z eShop. - -### Kompatybilne gry DS VC - -?> Jeśli masz konsolę z regionu Europejskiego, jest szansa, że masz już za darmo Dr. Kawashima's Brain Training: How Old is Your Brain?. Udaj się [do eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) i sprawdź, czy masz jedną z tych gier. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/pl_PL/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/pl_PL/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index 17ecc831ebf..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archiwum - Haxchi - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Instalacja kanału Homebrew Launcher {docsify-ignore} - -Na tej stronie dowiesz się jak zainstalować kanał Homebrew Launcher jako aplikację bezpośrednio do Home Menu. - -### Instrukcje {docsify-ignore} - -?> Instalacja kanału Homebrew Launcher jest opcjonalna, ponieważ możesz go uruchomić przytrzymując przycisk A podczas uruchamiania Haxchi. - -1. Włącz konsolę. -1. Uruchom grę Haxchi DS z menu Wii U. Spowoduje to uruchomienie menu Wii U z włączonym CFW. -1. Uruchom ponownie grę Haxchi DS przytrzymując przycisk A. Spowoduje to uruchomienie Homebrew Launcher. -1. Przejdź do Homebrew Launcher, znajdź i uruchom aplikację WUP Installer GX2. -1. Użyj ekranu dotykowego, aby wybrać `Homebrew Launcher Channel`. Naciśnij `Install` i potwierdź naciskając `Yes`. -1. Wybierz NAND jako miejsce docelowe instalacji. Spowoduje to instalację kanału Homebrew Launcher w menu Wii U. -1. Po zakończeniu instalacji naciśnij przycisk HOME i wróć do menu głównego Wii U. -1. Teraz zobaczysz Homebrew Launcher zainstalowany w menu Wii U. Pamiętaj, że musisz uruchomić CFW po każdym ponownym uruchomieniu Wii U, aby uruchomic ten kanał. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/pl_PL/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index f8d3af9bb02..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archiwum - Haxchi - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Uruchamianie CFW {docsify-ignore} - -Mając kopię zapasową NAND na wypadek, gdyby coś poszło nie tak, możesz uruchomić CFW w swoim systemie. - -W przeciwieństwie do takich systemów jak DSi, Wii lub 3DS, Wii U CFW ma charakter tymczasowy. Oznacza to, że gdy tylko system zrestartuje się, CFW przestanie działać i znowu musisz postępować zgodnie z tą instrukcją. Można to ominąć poprzez zainstalowanie CBHC jako dodatek do instalacji Haxchi CFW. - -### Instrukcje {docsify-ignore} - -?> Jeśli instalacja nie powiedzie się z jakiegoś powodu, spróbuj odinstalować i ponownie pobrać grę DS VC z eShop i upewnij się, że jest zainstalowana w NAND. - -1. Wyciągnij kartę SD ze swojego komputera i podłącz ją do Wii U. -1. Jeśli jeszcze tego nie zrobiłeś, pobierz wybraną grę DS Virtual Console z eShop. -1. Uruchom Homebrew Launcher na swoim systemie, zgodnie z tym co [wcześniej opisano](browser-exploit). -1. Przejdź do Homebrew Launcher i otwórz aplikację Haxchi. -1. Użyj D-Pada, aby ustawić kursor na grze, na której chcesz zainstalować Haxchi i naciśnij przycisk A, aby to zrobić. -1. Po zakończeniu instalacji, twoja konsola uruchomi menu Wii U. Zobaczysz, że Twoja gra została zastąpiona przez ikonę Haxchi. -1. Uruchom zmodyfikowaną grę DS. Spowoduje to ponowne uruchomienie konsoli i włączenie CFW. -1. Będziesz musiał uruchamiać swoją grę Haxchi DS po każdym ponownym uruchomieniu CFW. -1. Możesz teraz ponownie podłączyć wszystkie urządzenia USB, które odłączyłeś przed rozpoczęciem tego poradnika. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/haxchi/nand-backup.md b/translations/pl_PL/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 869c5f4cd0e..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archiwum - Haxchi - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Tworzenie kopii zapasowej NAND {docsify-ignore} - -W sytuacji, gdyby cokolwiek poszło nie tak w późniejszym procesie i Twoja Wii U zostanie uszkodzona, przywracanie poprzednio utworzonej kopii zapasowej NAND może ją naprawić. - -### Instrukcje {docsify-ignore} - -?> Wii U NAND w zależności od modelu ma pojemność 8GB albo 32GB. W związku z tym, aby utworzyć pełną kopię zapasową NAND Twojej konsoli, Twoja karta SD musi być większa niż rozmiar Twojego NAND. Jeśli nie masz wystarczająco dużej karty SD, możesz pominąć opcjonalną sekcję `MLC`, która zawiera zapisane pliki i dane gry i nie jest potrzebna do odzyskania w przypadku większości uszkodzeń. - -?> Przywracanie kopii zapasowej NAND na Wii U wymaga dodatkowych umiejętności sprzętowych i mikrolutowniczych.
Jednak tworzenie kopii zapasowej NAND jest **zawsze** przydatne, więc nie pomijaj tego etapu.
Twoja kopia zapasowa NAND jest unikalna dla Twojego systemu. Kopie zapasowe z innych konsoli **nie będą** działać. - -1. Przejdź do Homebrew Launcher i uruchom aplikację `Wii U NAND Dumper`. -1. Użyj D-Pada na Wii U GamePad'zie, aby ustawić następującą konfigurację: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Naciśnij przycisk A, aby rozpocząć proces zrzucania na kartę SD. -1. Po zakończeniu procesu, wyłącz Wii U, wyciągnij kartę SD z Wii U i podłącz ją do komputera. -1. Aby upewnić się, że nie utracisz plików, skopiuj `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` i jeśli zdecydowałeś się na pełną kopię zapasową, `również mlc.bin.part` na komputer. -1. Usuń pliki z karty SD aby zwolnić miejsce. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/pl_PL/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d84ef6c9a29..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archiwum - Haxchi - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Przygotowanie karty SD {docsify-ignore} - -W tym punkcie umieścimy wymagane pliki CFW i dodatkowe pliki homebrew na karcie SD. - -?> **Uwaga** Twoje urządzenie SD będzie musiało być już sformatowane jako FAT32. Jeśli Twoja karta SD nie jest sformatowana do FAT32, użyj [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) z 32k (32768) jednostek alokacji, aby ją sformatować. **Nie** oznaczaj karty SD jako `wiiu` bo spowoduje to problemy z homebrew. - -### Czego Potrzebujesz {docsify-ignore} - -- Najnowsza wersja [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Będziesz musiał pobrać plik `payload.zip`. -- Wersja 1.4 [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Musisz pobrać wersję v1.4 `homebrew_launcher.v.1.4.zip`. -- Najnowsze wydanie [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Najnowsza wersja [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - Będziesz musiał pobrać plik `homebrew_launcher_channel.v2.1_fix.zip`. -- Najnowsza wersja [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Najnowsza wersja [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Musisz pobrać plik `wiiu-extracttosd.zip`. -- Najnowsza wersja [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- Najnowsza wersja SaveMii Mod. - -### Instrukcje {docsify-ignore} - -?> **Uwaga** Pliki info.json i manifest.install nie są potrzebne do procesu modyfikacji i dlatego mogą zostać usunięte. - -1. Włóż kartę SD Wii U do komputera. -1. Utwórz folder o nazwie `install` w katalogu głównym karty SD. -1. Skopiuj zawartość pliku `homebrew_launcher_channel.v2.1_fix.zip` do folderu `install`. -1. Skopiuj zawartość pliku `haxchi.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `wup_installer_gx2.zi` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `nanddumper.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `wiiu-extracttosd.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `homebrew_launcher.v.1.4.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `savemii_mod.zip` do katalogu głównego karty SD. -1. Skopiuj `payload.elf` z `payload.zip` do folderu `wiiu` na karcie SD. ----------- - -### Układ karty SD {docsify-ignore} - -
-Kliknij tutaj, aby wyświetlić końcowy układ plików na karcie SD. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Wszystkie inne aplikacje jak disc2app, nanddumper, etc. powinny być tu) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pl_PL/docs/user-guide/archive/haxchi/sidebar.md b/translations/pl_PL/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index 8a9c7600d40..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Strona główna](../../introduction) -- [Wybierz CFW](../cfw-choice) -- [Wybierz swoją grę DS VC](ds-vc-choice) -- [Przygotowanie SD](sd-preparation) -- [Exploit przeglądarki](browser-exploit) -- [Tworzenie kopii zapasowej NAND](nand-backup) -- [Uruchamianie CFW](launching-cfw) -- [Zainstaluj kanał Homebrew](installing-hblc) -- **Linki** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Przetłumacz](https://icongr.am/material/translate.svg?color=808080&size=16)Przetłumacz](https://hacks-guide.crowdin.com/u/projects/10) -- [Wesprzyj](../../donations) -- [O tej stronie](../../about) \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/pl_PL/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index c0a4b6b1828..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archiwum - Mocha - Wybierz punkt wejścia - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../introduction)** - -## Online Exploit - -- Wymaga połączenia z Internetem za każdym razem, gdy chcesz uruchomić Homebrew Launcher. - -### [**Kontynuuj z Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Wymaga połączenia z Internetem do konfiguracji, ale może być używana offline po jego ustawieniu. -- Wymaga modyfikacji pliku systemowego. - -### [**Kontynuuj z Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c1a777fe0e0..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archiwum - Mocha - Indexiine - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../../introduction)** - -## Exploit przeglądarki {docsify-ignore} - -Aby zainstalować CFW, najpierw musimy uruchomić Homebrew Launcher poprzez exploit przeglądarki. Upewnij się, że Twój Wii U ma dostęp do Internetu, aby wykonać ten krok. - -### Instrukcje {docsify-ignore} - -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. -1. Uruchom przeglądarkę internetową i przejdź do strony `wiiuexploit.xyz`. -1. Kliknij na `Run Homebrew Launcher!`. Twoja konsola powinna uruchomić Homebrew Launcher. - - Jeśli Twój Wii U utknie na białym ekranie lub się zawiesi, odczekaj kilka sekund. Jeśli nic się nie zmieni po kilku/kilkunastu sekundach, zrestartuj konsolę, [zresetuj zapisane dane przeglądarki](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) i spróbuj ponownie. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index 937b5c5235e..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archiwum - Mocha - Indexiine - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../../introduction)** - -## Modyfikacja przeglądarki internetowej {docsify-ignore} - -Mając kopię zapasową NAND na wypadek, gdy coś poszło nie tak, możesz zainstalować Indexiine w swoim systemie. - -?> Jeśli nie podłączyłeś karty SD z powrotem do Wii U po skopiowaniu kopii zapasowej NAND do komputera, zrób to teraz. - - -### Instrukcje {docsify-ignore} - -1. Włącz Wii U. -1. Uruchom przeglądarkę internetową i przejdź do strony `wiiuexploit.xyz`. -1. Kliknij na `Run Homebrew Launcher!`. Twoja konsola powinna uruchomić Homebrew Launcher. - - Jeśli Twój Wii U utknie na białym ekranie lub się zawiesi, odczekaj kilka sekund. Jeśli nic się nie zmieni po kilku/kilkunastu sekundach, zrestartuj konsolę, [zresetuj zapisane dane przeglądarki](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) i spróbuj ponownie. -1. Przejdź do Homebrew Launcher i uruchom aplikację `Indexiine Installer`. -1. Naciśnij przycisk A, aby zainstalować Indexiine. -1. Po zakończeniu procesu, zamknij Homebrew Launcher aby wrócić do menu Wii U. - -Homebrew Launcher będzie uruchamiany za każdym razem, gdy uruchomisz przeglądarkę internetową nawet bez połączenia z Internetem. Jeśli chcesz odwiedzić inną stronę, otwórz ją, zanim Indexiine uruchomi exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index 8920f458bb7..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archiwum - Mocha - Indexiine - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../../introduction)** - -## Uruchamianie CFW {docsify-ignore} - -W przeciwieństwie do takich systemów jak DSi, Wii lub 3DS, Wii U CFW ma charakter tymczasowy. Oznacza to, że gdy tylko system zrestartuje się, CFW przestanie działać i znowu musisz postępować zgodnie z tą instrukcją. Można to ominąć poprzez zainstalowanie CBHC jako dodatek do instalacji Haxchi CFW. - -### Instrukcje {docsify-ignore} - -1. Uruchom Homebrew Launcher uruchamiając przeglądarkę internetową. -1. Przejdź do Homebrew Launcher i otwórz aplikację Mocha. -1. Przeniesie Cię to z powrotem do Homebrew Launcher i uruchomi CFW. -1. Po każdym restarcie konsoli będziesz musiał powtarzać te kroki aby uruchomić CFW. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index 864bd26a14e..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archiwum - Mocha - Indexiine - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../../introduction)** - -## Tworzenie kopii zapasowej NAND {docsify-ignore} - -W sytuacji, gdyby cokolwiek poszło nie tak w późniejszym procesie i Twoja Wii U zostanie uszkodzona, przywracanie poprzednio utworzonej kopii zapasowej NAND może ją naprawić. - -### Instrukcje {docsify-ignore} - -?> Wii U NAND w zależności od modelu ma pojemność 8GB albo 32GB. W związku z tym, aby utworzyć pełną kopię zapasową NAND Twojej konsoli, Twoja karta SD musi być większa niż rozmiar Twojego NAND. Jeśli nie masz wystarczająco dużej karty SD, możesz pominąć opcjonalną sekcję `MLC`, która zawiera zapisane pliki i dane gry i nie jest potrzebna do odzyskania w przypadku większości uszkodzeń. - -?> Przywracanie kopii zapasowej NAND na Wii U wymaga dodatkowych umiejętności sprzętowych i mikrolutowniczych.
Jednak tworzenie kopii zapasowej NAND jest **zawsze** przydatne, więc nie pomijaj tego etapu.
Twoja kopia zapasowa NAND jest unikalna dla Twojego systemu. Kopie zapasowe z innych konsoli **nie będą** działać. - -1. Przejdź do Homebrew Launcher i uruchom aplikację `Wii U NAND Dumper`. -1. Użyj D-Pada na Wii U GamePad'zie, aby ustawić następującą konfigurację: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Naciśnij przycisk A, aby rozpocząć proces zrzucania na kartę SD. -1. Po zakończeniu procesu, wyłącz Wii U, wyciągnij kartę SD z Wii U i podłącz ją do komputera. -1. Aby upewnić się, że nie utracisz plików, skopiuj `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` i jeśli zdecydowałeś się na pełną kopię zapasową, `również mlc.bin.part` na komputer. -1. Usuń pliki z karty SD aby zwolnić miejsce. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index 82612072c3a..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archiwum - Mocha - Indexiine - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../../introduction)** - -## Przygotowanie karty SD {docsify-ignore} - -W tym punkcie umieścimy wymagane pliki CFW i dodatkowe pliki homebrew na karcie SD. - -?> **Uwaga** Twoje urządzenie SD będzie musiało być już sformatowane jako FAT32. Jeśli Twoja karta SD nie jest sformatowana do FAT32, użyj [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) z 32k (32768) jednostek alokacji aby ją sformatować. **Nie** oznaczaj karty SD jako `wiiu` bo spowoduje to problemy z homebrew. - -### Czego Potrzebujesz {docsify-ignore} - -- Mocha config. -- Najnowsza wersja [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Będziesz musiał pobrać plik `payload.zip`. -- Wersja 1.4 [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Musisz pobrać wersję v1.4 `homebrew_launcher.v.1.4.zip`. -- Najnowsze wydanie [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Najnowsza wersja [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Najnowsza wersja [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Musisz pobrać plik `wiiu-extracttosd.zip`. -- Najnowsza wersja [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- Najnowsza wersja SaveMii Mod. -- Najnowsza wersja [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instrukcje {docsify-ignore} - -?> **Uwaga** Pliki info.json i manifest.install nie są potrzebne do procesu modyfikacji i dlatego mogą zostać usunięte. - -1. Włóż kartę SD Wii U do komputera. -1. Skopiuj zawartość pliku `wup_installer_gx2.zi` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `nanddumper.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `wiiu-extracttosd.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `homebrew_launcher.v.1.4.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `mocha.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `indexiine-installer.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `savemii_mod.zip` do katalogu głównego karty SD. -1. Skopiuj plik `config.ini` do folderu `/wiiu/apps/mocha` na karcie SD. -1. Skopiuj `payload.elf` z `payload.zip` do folderu `wiiu` na karcie SD. ----------- - -### Układ karty SD {docsify-ignore} - -
-Kliknij tutaj, aby wyświetlić końcowy układ plików na karcie SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Aplikacje takie jak disc2app, nanddumper, etc. powinny być tu) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index c3f51b4210f..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Strona główna](../../../introduction) -- [Wybierz CFW](../../cfw-choice) -- [Wybierz punkt wejścia](../entrypoint-choice) -- [Przygotowanie SD](sd-preparation) -- [Exploit przeglądarki](browser-exploit) -- [Tworzenie kopii zapasowej NAND](nand-backup) -- [Modyfikacja przeglądarki](browser-modding) -- [Uruchamianie CFW](launching-cfw) -- **Linki** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Przetłumacz](https://icongr.am/material/translate.svg?color=808080&size=16)Przetłumacz](https://hacks-guide.crowdin.com/u/projects/10) -- [Wesprzyj](../../../donations) -- [O tej stronie](../../../about) \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 0479708f4cb..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../../introduction)** - -## Exploit przeglądarki {docsify-ignore} - -Aby zainstalować CFW, najpierw musimy uruchomić Homebrew Launcher poprzez exploit przeglądarki. Upewnij się, że Twój Wii U ma dostęp do Internetu, aby wykonać ten krok. - -### Instrukcje {docsify-ignore} - -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. -1. Uruchom przeglądarkę internetową i przejdź do strony `wiiuexploit.xyz`. -1. Kliknij na `Run Homebrew Launcher!`. Twoja konsola powinna uruchomić Homebrew Launcher. - - Jeśli Twój Wii U utknie na białym ekranie lub się zawiesi, odczekaj kilka sekund. Jeśli nic się nie zmieni po kilku/kilkunastu sekundach, zrestartuj konsolę, [zresetuj zapisane dane przeglądarki](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) i spróbuj ponownie. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 44de744f9a1..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../../introduction)** - -## Uruchamianie CFW {docsify-ignore} - -Mając kopię zapasową NAND na wypadek, gdyby coś poszło nie tak, możesz uruchomić CFW w swoim systemie. - -W przeciwieństwie do takich systemów jak DSi, Wii lub 3DS, Wii U CFW ma charakter tymczasowy. Oznacza to, że gdy tylko system zrestartuje się, CFW przestanie działać i znowu musisz postępować zgodnie z tą instrukcją. Można to ominąć poprzez zainstalowanie CBHC jako dodatek do instalacji Haxchi CFW. - -### Instrukcje {docsify-ignore} - -1. Wyciągnij kartę SD ze swojego komputera i podłącz ją do Wii U. -1. Uruchom Homebrew Launcher na swoim systemie, zgodnie z tym co [wcześniej opisano](browser-exploit). -1. Przejdź do Homebrew Launcher i otwórz aplikację Mocha. -1. Przeniesie Cię to z powrotem do Homebrew Launcher i uruchomi CFW. -1. Po każdym restarcie konsoli będziesz musiał powtarzać te kroki aby uruchomić CFW. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 90bcb18ddf7..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../../introduction)** - -## Tworzenie kopii zapasowej NAND {docsify-ignore} - -W sytuacji, gdyby cokolwiek poszło nie tak w późniejszym procesie i Twoja Wii U zostanie uszkodzona, przywracanie poprzednio utworzonej kopii zapasowej NAND może ją naprawić. - -### Instrukcje {docsify-ignore} - -?> Wii U NAND w zależności od modelu ma pojemność 8GB albo 32GB. W związku z tym, aby utworzyć pełną kopię zapasową NAND Twojej konsoli, Twoja karta SD musi być większa niż rozmiar Twojego NAND. Jeśli nie masz wystarczająco dużej karty SD, możesz pominąć opcjonalną sekcję `MLC`, która zawiera zapisane pliki i dane gry i nie jest potrzebna do odzyskania w przypadku większości uszkodzeń. - -?> Przywracanie kopii zapasowej NAND na Wii U wymaga dodatkowych umiejętności sprzętowych i mikrolutowniczych.
Jednak tworzenie kopii zapasowej NAND jest **zawsze** przydatne, więc nie pomijaj tego etapu.
Twoja kopia zapasowa NAND jest unikalna dla Twojego systemu. Kopie zapasowe z innych konsoli **nie będą** działać. - -1. Przejdź do Homebrew Launcher i uruchom aplikację `Wii U NAND Dumper`. -1. Użyj D-Pada na Wii U GamePad'zie, aby ustawić następującą konfigurację: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Naciśnij przycisk A, aby rozpocząć proces zrzucania na kartę SD. -1. Po zakończeniu procesu, wyłącz Wii U, wyciągnij kartę SD z Wii U i podłącz ją do komputera. -1. Aby upewnić się, że nie utracisz plików, skopiuj `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` i jeśli zdecydowałeś się na pełną kopię zapasową, `również mlc.bin.part` na komputer. -1. Usuń pliki z karty SD aby zwolnić miejsce. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index 12843467d85..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **TA METODA NIE JEST JUŻ WSPIERANA** -**AKTUALNA METODA JEST DOSTĘPNA [TUTAJ](../../../introduction)** - -## Przygotowanie karty SD {docsify-ignore} - -W tym punkcie umieścimy wymagane pliki CFW i dodatkowe pliki homebrew na karcie SD. - -?> **Uwaga** Twoje urządzenie SD będzie musiało być już sformatowane jako FAT32. Jeśli Twoja karta SD nie jest sformatowana do FAT32, użyj [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) z 32k (32768) jednostek alokacji aby ją sformatować. **Nie** oznaczaj karty SD jako `wiiu` bo spowoduje to problemy z homebrew. - -### Czego Potrzebujesz {docsify-ignore} - -- Mocha config. -- Najnowsza wersja [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - Będziesz musiał pobrać plik `payload.zip`. -- Wersja 1.4 [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - Musisz pobrać wersję v1.4 `homebrew_launcher.v.1.4.zip`. -- Najnowsze wydanie [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- Najnowsza wersja [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- Najnowsza wersja [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - Musisz pobrać plik `wiiu-extracttosd.zip`. -- Najnowsza wersja [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- Najnowsza wersja SaveMii Mod. - -### Instrukcje {docsify-ignore} - -?> **Uwaga** Pliki info.json i manifest.install nie są potrzebne do procesu modyfikacji i dlatego mogą zostać usunięte. - -1. Włóż kartę SD Wii U do komputera. -1. Skopiuj zawartość pliku `wup_installer_gx2.zi` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `nanddumper.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `wiiu-extracttosd.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `homebrew_launcher.v.1.4.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `mocha.zip` do katalogu głównego karty SD. -1. Skopiuj zawartość pliku `savemii_mod.zip` do katalogu głównego karty SD. -1. Skopiuj plik `config.ini` do folderu `/wiiu/apps/mocha` na karcie SD. -1. Skopiuj `payload.elf` z `payload.zip` do folderu `wiiu` na karcie SD. ----------- - -### Układ karty SD {docsify-ignore} - -
-Kliknij tutaj, aby wyświetlić końcowy układ plików na karcie SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (Aplikacje takie jak disc2app, nanddumper, etc. powinny być tu) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index eb6c0b5a457..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Strona główna](../../../introduction) -- [Wybierz CFW](../../cfw-choice) -- [Wybierz punkt wejścia](../entrypoint-choice) -- [Przygotowanie SD](sd-preparation) -- [Exploit przeglądarki](browser-exploit) -- [Tworzenie kopii zapasowej NAND](nand-backup) -- [Uruchamianie CFW](launching-cfw) -- **Linki** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Przetłumacz](https://icongr.am/material/translate.svg?color=808080&size=16)Przetłumacz](https://hacks-guide.crowdin.com/u/projects/10) -- [Wesprzyj](../../../donations) -- [O tej stronie](../../../about) \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/mocha/sidebar.md b/translations/pl_PL/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index c22a2f31a46..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Strona główna](../../introduction) -- [Wybierz CFW](../cfw-choice) -- [Wybierz punkt wejścia](entrypoint-choice) -- **Linki** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Przetłumacz](https://icongr.am/material/translate.svg?color=808080&size=16)Przetłumacz](https://hacks-guide.crowdin.com/u/projects/10) -- [Wesprzyj](../../donations) -- [O tej stronie](../../about) \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/sidebar.md b/translations/pl_PL/docs/user-guide/archive/sidebar.md deleted file mode 100644 index fa86650f7eb..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archiwum** -- [Strona główna](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Linki** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Przetłumacz](https://icongr.am/material/translate.svg?color=808080&size=16)Przetłumacz](https://hacks-guide.crowdin.com/u/projects/10) -- [Wesprzyj](../../donations) -- [O tej stronie](../../about) -- **Prywatność** -- [Polityka prywatności](../../privacy-policy) diff --git a/translations/pl_PL/docs/user-guide/archive/tiramisu/autoboot.md b/translations/pl_PL/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index 8578837258e..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobotowanie Tiramisu - -Obecnie za każdym razem, gdy chcesz uruchomić Tiramisu, będziesz musiał uruchomić aplikację Health and Safety Information. Jeśli chcesz automatycznie uruchamiać Tiramisu przy każdym rozruchu, możesz dodać aplikację Health and Safety do autoboot'owania. - -### Instrukcje - -1. Uruchom konsolę, aby uruchomić menu Wii U, uruchom aplikację Health and Safety Information i przytrzymaj przycisk X, aby otworzyć Environment Loader menu. -1. Przejdź za pomocą D-Pad do środowiska `installer` i naciśnij A, aby je uruchomić. -1. Naciśnij A, aby wybrać `Check`. -1. Wybierz `Boot options`. -1. Będziesz zapytany o to, czy chcesz zmienić aplikację/tutuł boot'owania. Naciśnij A, aby wybrać `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. Od teraz PayloadLoader będzie uruchamiany automatycznie przy każdym uruchomieniu konsoli. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Poruszaj się przy pomocy D-Pada, aby najechać na tytuł, który chcesz wybrać do autoboot'owania, a następnie naciśnij przycisk Y, aby ustawić ten tytuł na stałe do autoboot'owania. - - Naciśnij A, aby uruchomić wybrany tytuł. - diff --git a/translations/pl_PL/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/pl_PL/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index 0a805fc4fcd..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Exploit przeglądarki - -Upewnij się, że Twój Wii U ma dostęp do Internetu, aby wykonać ten krok. - -### Instrukcje - -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. -1. Uruchom przeglądarkę internetową i przejdź do strony `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - Jeśli Twój Wii U utknie na białym ekranie lub się zawiesi, odczekaj kilka sekund. Jeśli nic się nie zmieni po kilku/kilkunastu sekundach, zrestartuj konsolę, [zresetuj zapisane dane przeglądarki](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) i spróbuj ponownie. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/pl_PL/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/pl_PL/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 32937b8f690..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizowanie konfiguracji - -Teraz, gdy PayloadLoader, Environment Loader i Tiramisu są zainstalowane, zamierzamy zakończyć konfigurację. - -Zamierzamy sprawić, by środowisko Tiramisu ładowało się automatycznie kiedy konsola autobootuje aplikację Health and Safety Information (lub gdy uruchamiasz ją ręcznie, jeśli nie wybierzesz jej do autoboot), ustawimy menu Wii U jako domyślne, a także uruchomimy dodatkowe aplikacje homebrew. - -### Konfigurowanie PayloadLoader, Environment Loader i Tiramisu - -1. Włącz Wii U. - - Environment Loader powinien się pokazać. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. Będąc w Boot Selector, `Wii U Menu` powinno być już zaznaczone, Naciśnij Y, aby ustawić je jako domyślną opcję autobootingu, a następnie naciśnij A, aby uruchomić menu Wii U. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Po uruchomieniu się środowiska Tiramisu możesz otworzyć Mii Maker w dowolnym momencie, aby dostać się do Homebrew Launchera.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** jest modułem Tiramisu, który umożliwia bezprzewodowe podłączenie najbardziej popularnych kontrolerów Bluetooth do Wii U (np. pad od PS4/PS3). Zobacz [tę stronę](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/), aby uzyskać więcej informacji. -- **Homebrew Appstore** pozwala przeglądać i pobierać aplikacje homebrew bezpośrednio z poziomu Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` z [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/pl_PL/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/pl_PL/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index e647d9ee435..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Instalacja PayloadLoader - -Teraz, gdy masz kopię zapasową NAND na wypadek, gdyby coś poszło nie tak, możesz zainstalować PayloadLoader w swoim systemie. - -Instalacja PayloadLoader pozwoli Ci uzyskać dostęp do Tiramisu poprzez uruchomienie aplikacji Health and Safety Information. - -!> Przywrócenie ustawień fabrycznych **nie** odinstaluje PayloadLoader. Sprawdź [odinstaluj PayloadLoader](../../uninstall-payloadloader), aby usunąć PayloadLoader. - -### Instrukcje - -?> Jeśli uruchomiłeś już Tiramisu, zrestartuj konsolę przed ponownym uruchomieniem exploitu przeglądarki. - -1. Wyciągnij kartę SD ze swojego komputera i podłącz ją do Wii U. -1. Wykonaj exploit przeglądarki internetowej, w sposób jaki [wcześniej objaśniliśmy](browser-exploit) ale tym razem, musisz przytrzymać przycisk X, aby otworzyć menu Environment Loader. -1. Przejdź za pomocą D-Pad do środowiska `installer` i naciśnij A, aby je uruchomić. -1. Naciśnij przycisk A, aby sprawdzić, czy możesz zainstalować PayloadLoader. - - Powinieneś zostać teraz poinformowany, że PayloadLoader może być zainstalowany w aplikacji Health and Safety Information. -1. Naciśnij A i wybierz `Install / Update`. -1. Zostaniesz zapytany, czy naprawdę chcesz zainstalować PayloadLoader. Użyj D-Pada, aby wybrać `Install` i naciśnij A. -1. Po zakończeniu procesu, naciśnij A, aby zamknąć konsolę. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/pl_PL/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index f099ccdb41e..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Tworzenie kopii zapasowej NAND - -W sytuacji, gdyby cokolwiek poszło nie tak w późniejszym procesie i Twoja Wii U zostanie uszkodzona, przywracanie poprzednio utworzonej kopii zapasowej NAND może ją naprawić. - -### Instrukcje - -?> Wii U NAND w zależności od modelu ma pojemność 8GB albo 32GB. W związku z tym, aby utworzyć pełną kopię zapasową NAND Twojej konsoli, Twoja karta SD musi być większa niż rozmiar Twojego NAND. Jeśli nie masz wystarczająco dużej karty SD, możesz pominąć opcjonalną sekcję `MLC`, która zawiera zapisane pliki i dane gry i nie jest potrzebna do odzyskania w przypadku większości uszkodzeń. - -?> Przywracanie kopii zapasowej NAND na Wii U wymaga dodatkowych umiejętności sprzętowych i mikrolutowniczych.
Jednak tworzenie kopii zapasowej NAND jest **zawsze** przydatne, więc nie pomijaj tego etapu.
Twoja kopia zapasowa NAND jest unikalna dla Twojego systemu. Kopie zapasowe z innych konsoli **nie będą** działać. - -1. Przejdź do `nanddumper` za pomocą GamePad i naciśnij A, aby go uruchomić. -1. Użyj D-Pada na Wii U GamePad'zie, aby ustawić następującą konfigurację: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Naciśnij przycisk A, aby rozpocząć proces zrzucania na kartę SD. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Usuń pliki z karty SD aby zwolnić miejsce. - -?> **Jeśli PayloadLoader jest już zainstalowany w aplikacji Health and Safety Information i uruchamia się przy starcie automatycznie, nie musisz kontynuwać dalej.** diff --git a/translations/pl_PL/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/pl_PL/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index 9a0fb20f908..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Przygotowanie karty SD - -Teraz umieścimy wymagane pliki CFW i dodatkowe pliki homebrew na karcie SD. - -?> **Uwaga** Twoja karta SD będzie musiała być już sformatowana jako FAT32. Jeśli Twoja karta SD nie jest sformatowana do FAT32, użyj [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) z ustawieniem 32k (32768) jednostek alokacji aby ją sformatować. **Nie** oznaczaj karty SD jako `wiiu` bo spowoduje to problemy z homebrew. - -### Czego potrzebujesz - -- Najnowsze pliki z [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instrukcje - -1. Włóż kartę SD Wii U do komputera. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Skopiuj plik `01_sigpatches.rpx` do `/wiiu/environments/tiramisu/modules/setup` na karcie SD. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### Układ karty SD {docsify-ignore} - -
-Kliknij tutaj, aby wyświetlić końcowy układ plików na karcie SD. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/pl_PL/docs/user-guide/archive/tiramisu/sidebar.md b/translations/pl_PL/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index fbab8489360..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Strona główna](../../introduction) -- [Przygotowanie SD](sd-preparation) -- [Exploit przeglądarki](browser-exploit) -- [Tworzenie kopii zapasowej NAND](nand-backup) -- [Instalacja PayloadLoader](installing-payloadloader) -- [Autobootowanie Tiramisu](autoboot) -- [Finalizowanie konfiguracji](finalizing-setup) -- **Linki** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Przetłumacz](https://icongr.am/material/translate.svg?color=808080&size=16)Przetłumacz](https://hacks-guide.crowdin.com/u/projects/10) -- [Wesprzyj](../donations) -- [O tej stronie](../about) diff --git a/translations/pl_PL/docs/user-guide/archive/vwii/browser-exploit.md b/translations/pl_PL/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index b6b50cb0547..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Uruchamianie Exploita ---- -Aby zainstalować kanał Homebrew, najpierw musimy utworzyć kopię zapasową NAND. Musimy też mieć możliwość uruchomienia Homebrew Launcher za pomocą exploitu, takiego jak Exploit przeglądarki. - -Upewnij się, że Twój Wii U ma dostęp do Internetu, aby wykonać ten krok. - -### Instrukcje {docsify-ignore} - -1. Uruchom wybrany exploit: - - Jeśli nigdy wcześniej nie uruchamiałeś homebrew, "uruchomienie exploitu" oznacza uruchomienie Exploitu przeglądarki (tzw. Browser Exploit). To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - Jeśli Twoja konsola Wii U utknie na białym ekranie lub się zawiesi, odczekaj kilka sekund. Jeśli nic się nie zmieni po kilku/kilkunastu sekundach, zrestartuj konsolę, [zresetuj zapisane dane przeglądarki](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) i spróbuj ponownie. - - - Jeśli używasz coldbootingu bezpośrednio do PayloadLoader, "uruchomienie exploitu" oznacza uruchomienie konsoli. - - - Jeśli uruchamiasz PayloadLoader za pośrednictwem aplikacji Health & Safety, "uruchomienie exploitu" oznacza uruchomienie aplikacji Health & Safety. - -1. Podczas uruchamiania wybranego przez Ciebie exploitu, przytrzymaj przycisk B (jeśli chcesz zrobić `kopię NAND`) lub przycisk X (jeśli chcesz przejść do `Instalacji Homebrew Channel`). diff --git a/translations/pl_PL/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/pl_PL/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index dd2065c38ab..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizowanie konfiguracji - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/pl_PL/docs/user-guide/archive/vwii/installing-cioses.md b/translations/pl_PL/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index cd2eefead2f..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Instalacja cIOS - -1. Włącz Wii U i uruchom vWii. -2. Uruchom Kanał Homebrew Channel. -3. Uruchom instalator d2x cIOS. -4. Ustaw wszystko tak jak poniżej: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Ustaw wszystko tak jak poniżej: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Ustaw wszystko tak jak poniżej: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/pl_PL/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/pl_PL/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index 887cce23441..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Instalacja kanału Homebrew - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Następnie naciśnij przycisk HOME, aby powrócić do menu Wii U. -4. Uruchom vWii (ikonę Wii Menu). - - Jeśli instalacja zakończyła się sukcesem, powinieneś zobaczyć Kanał Homebrew w Wii Menu. diff --git a/translations/pl_PL/docs/user-guide/archive/vwii/nand-backup.md b/translations/pl_PL/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index 56f00eaea19..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Kopia zapasowa NAND - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Użyj D-Pada na Wii U GamePad'zie, aby ustawić następującą konfigurację: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Naciśnij przycisk A, aby rozpocząć proces zrzucania na kartę SD. -4. Po zakończeniu procesu, wyłącz Wii U, wyciągnij kartę SD z Wii U i podłącz ją do komputera. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Usuń pliki z karty SD aby zwolnić miejsce. -7. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. diff --git a/translations/pl_PL/docs/user-guide/archive/vwii/patching-ios80.md b/translations/pl_PL/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index bb905d15fe9..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Uruchom spatch'owany instalator IOS 80 dla vWii. -2. Przeczytaj ekran z ostrzeżeniem i poczekaj 30 sekund. -3. Naciśnij dowolny przycisk, aby zainstalować. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/pl_PL/docs/user-guide/archive/vwii/sd-preparation.md b/translations/pl_PL/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 40921d46e0c..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -Ta strona poprowadzi Cię przez proces modyfikacji Twojego vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### Czego potrzebujesz - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instrukcje - -1. Włóż kartę SD Wii U do komputera. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. diff --git a/translations/pl_PL/docs/user-guide/archive/vwii/sidebar.md b/translations/pl_PL/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/pl_PL/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/pl_PL/docs/user-guide/aroma/autoboot.md b/translations/pl_PL/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index 8c5cc88f0f9..00000000000 --- a/translations/pl_PL/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instrukcje - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. Będziesz zapytany o to, czy chcesz zmienić aplikację/tutuł boot'owania. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. Od teraz PayloadLoader będzie uruchamiany automatycznie przy każdym uruchomieniu konsoli. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Poruszaj się przy pomocy D-Pada, aby najechać na tytuł, który chcesz wybrać do autoboot'owania, a następnie naciśnij przycisk Y, aby ustawić ten tytuł na stałe do autoboot'owania. - - Naciśnij A, aby uruchomić wybrany tytuł. diff --git a/translations/pl_PL/docs/user-guide/aroma/browser-exploit.md b/translations/pl_PL/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 35ee954bf1e..00000000000 --- a/translations/pl_PL/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Exploit przeglądarki - -Upewnij się, że Twój Wii U ma dostęp do Internetu, aby wykonać ten krok. - -### Instrukcje - -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - Jeśli Twój Wii U utknie na białym ekranie lub się zawiesi, odczekaj kilka sekund. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/pl_PL/docs/user-guide/aroma/finalizing-setup.md b/translations/pl_PL/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index 490d02ceff1..00000000000 --- a/translations/pl_PL/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizowanie konfiguracji - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. Zobacz [tę stronę](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/), aby uzyskać więcej informacji. -- **Homebrew Appstore** pozwala przeglądać i pobierać aplikacje homebrew bezpośrednio z poziomu Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` z [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/pl_PL/docs/user-guide/aroma/getting-started.md b/translations/pl_PL/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/pl_PL/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/pl_PL/docs/user-guide/aroma/installing-payloadloader.md b/translations/pl_PL/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index e2f3707a1ce..00000000000 --- a/translations/pl_PL/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Instalacja PayloadLoader - -Teraz, gdy masz kopię zapasową NAND na wypadek, gdyby coś poszło nie tak, możesz zainstalować PayloadLoader w swoim systemie. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instrukcje - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Wyciągnij kartę SD ze swojego komputera i podłącz ją do Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Naciśnij przycisk A, aby sprawdzić, czy możesz zainstalować PayloadLoader. - - Powinieneś zostać teraz poinformowany, że PayloadLoader może być zainstalowany w aplikacji Health and Safety Information. -7. Press the A button to select `Install / Update`. -8. Zostaniesz zapytany, czy naprawdę chcesz zainstalować PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/pl_PL/docs/user-guide/aroma/nand-backup.md b/translations/pl_PL/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index d22bf851598..00000000000 --- a/translations/pl_PL/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Tworzenie kopii zapasowej NAND - -W sytuacji, gdyby cokolwiek poszło nie tak w późniejszym procesie i Twoja Wii U zostanie uszkodzona, przywracanie poprzednio utworzonej kopii zapasowej NAND może ją naprawić. - -### Instrukcje - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Twoja kopia zapasowa NAND jest unikalna dla Twojego systemu. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Naciśnij przycisk A, aby rozpocząć proces zrzucania na kartę SD. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/pl_PL/docs/user-guide/aroma/sd-preparation.md b/translations/pl_PL/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index f37a9d1e3da..00000000000 --- a/translations/pl_PL/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Przygotowanie SD - -We will now place the required Aroma files on the SD Card. - -?> **Uwaga** Twoje urządzenie SD będzie musiało być już sformatowane jako FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instrukcje - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Włóż kartę SD Wii U do komputera. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### Układ karty SD {docsify-ignore} - -
-Kliknij tutaj, aby wyświetlić końcowy układ plików na karcie SD. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/pl_PL/docs/user-guide/aroma/sidebar.md b/translations/pl_PL/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index a63f94d9e00..00000000000 --- a/translations/pl_PL/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Strona główna](../introduction) -- [Getting Started with Aroma](getting-started) -- [Przygotowanie SD](sd-preparation) -- [Exploit przeglądarki](browser-exploit) -- [Kopia zapasowa NAND](nand-backup) -- [Instalacja PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizowanie konfiguracji](finalizing-setup) -- **Linki** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Przetłumacz](https://icongr.am/material/translate.svg?color=808080&size=16)Przetłumacz](https://hacks-guide.crowdin.com/u/projects/10) -- [Wesprzyj](../donations) -- [O tej stronie](../about) diff --git a/translations/pl_PL/docs/user-guide/cbhc/browser-exploit.md b/translations/pl_PL/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/pl_PL/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/cbhc/ds-vc-choice.md b/translations/pl_PL/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/pl_PL/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/pl_PL/docs/user-guide/cbhc/installing-hblc.md b/translations/pl_PL/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/pl_PL/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/cbhc/launching-cfw.md b/translations/pl_PL/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/pl_PL/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/cbhc/nand-backup.md b/translations/pl_PL/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/pl_PL/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/cbhc/sd-preparation.md b/translations/pl_PL/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/pl_PL/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pl_PL/docs/user-guide/cbhc/sidebar.md b/translations/pl_PL/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/pl_PL/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/cfw-choice.md b/translations/pl_PL/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/pl_PL/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/pl_PL/docs/user-guide/haxchi/browser-exploit.md b/translations/pl_PL/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/pl_PL/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/haxchi/ds-vc-choice.md b/translations/pl_PL/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/pl_PL/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/pl_PL/docs/user-guide/haxchi/installing-hblc.md b/translations/pl_PL/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/pl_PL/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/haxchi/launching-cfw.md b/translations/pl_PL/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/pl_PL/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/haxchi/nand-backup.md b/translations/pl_PL/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/pl_PL/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/haxchi/sd-preparation.md b/translations/pl_PL/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/pl_PL/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pl_PL/docs/user-guide/haxchi/sidebar.md b/translations/pl_PL/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/pl_PL/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/introduction.md b/translations/pl_PL/docs/user-guide/introduction.md deleted file mode 100644 index d969dd64e2f..00000000000 --- a/translations/pl_PL/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Poradnik Wii U Hacks ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Przeczytaj **#faq-wiiu**, odwiedź też stronę [Najczęściej zadawane pytania](faq) wcześniej, aby sprawdzić, czy odpowiedź na Twoje pytanie nie została już udzielona wcześniej. - -> Jeśli doceniasz ten poradnik, udziel nam [wsparcia](donations). - -> Aby uzyskać kompletne poradniki dla homebrew i niestandardowego oprogramowania dla innych urządzeń, sprawdź [hacks.guide](https://hacks.guide). - -### Homebrew - -Aplikacje Homebrew są niestandardowym oprogramowaniem, które nie zostało autoryzowane przez Nintendo. Należą do nich narzędzi do edycji zapisanych danych, gier, emulatorów i innych. - -Homebrew może być uruchomiony na Wii U o ile masz możliwość umieszczenia plików na karcie SD, a Wii U jest zaktualizowane do najnowszej wersji dla Twojego regionu. - -### Custom Firmware - Oprogramowanie niestandardowe - -Custom firmware (zwane w skrócie "CFW") pozwala CI na używanie bardziej zaawansowanych hacków i programów. Na przykład możesz instalować modyfikacje gier bez problemu. CFW można skonfigurować na dowolnej konsoli w najnowszej wersji. - -### Zastosowanie Homebrew & CFW - -Umożliwia między innymi wykonanie następujących zadań: - -- Używanie "ROM hacks" dla gier, które posiadasz. -- Tworzenie kopii zapasowej, edycja i przywracanie danych dla wielu gier. -- Granie w gry dla starszych systemów z różnymi emulatorami, używając RetroArch lub innych niezależnych emulatorów. -- Granie w gry z innego regionu. -- Zrzucanie zawartości płyt z grami Wii U do formatu, który można zainstalować na wewnętrznym lub zewnętrznym dysku pamięci Wii U. - - -### Cel końcowy - -Ten poradnik ma na celu przekształcenie całkowicie niezmodyfikowanego Wii U, do takiego, w którym będzie można uruchomić niestandardowe oprogramowanie. - -### Przed rozpoczęciem - -!> Przed rozpoczęciem poradnika, musisz znać zagrożenia związane z hakowaniem Wii U: **ZA KAŻDYM RAZEM** gdy modyfikujesz system, zawsze istnieje ryzyko uszkodzenia Wii U **NIEODWRACALNIE**. Ryzyko jest niewielkie, jednak istnieje. Upewnij się więc, że wykonujesz **WSZYSTKIE** kroki **DOKŁADNIE!**. Tak jak jest to opisane w poradniku -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> Aby pomyślnie przejść przez ten poradnik, będziesz potrzebował: -> -> - Karta SD. -> - Urządzenie takie jak komputer do umieszczania plików na karcie SD. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -Jeśli wszystko pójdzie zgodnie z planem, nie stracisz żadnych danych i wszystkie gry, zapisy, NNID itp., zostaną zachowane. - -Trzymaj urządzenie podłączone do zasilania przez cały proces, aby uniknąć utraty danych wynikających z niespodziewanego wyłączenia. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -Zaleca się przeczytanie całego poradnika od początku do końca jeden lub więcej razy, zanim rzeczywiście rozpoczniesz modyfikację systemu. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/pl_PL/docs/user-guide/mocha/entrypoint-choice.md b/translations/pl_PL/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/pl_PL/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/pl_PL/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/pl_PL/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/pl_PL/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/pl_PL/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/pl_PL/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pl_PL/docs/user-guide/mocha/indexiine/sidebar.md b/translations/pl_PL/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/pl_PL/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/pl_PL/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/pl_PL/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/pl_PL/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pl_PL/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/pl_PL/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/mocha/sidebar.md b/translations/pl_PL/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/pl_PL/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/tiramisu/autoboot.md b/translations/pl_PL/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index 0ceb0afb111..00000000000 --- a/translations/pl_PL/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobotowanie Tiramisu - -Obecnie za każdym razem, gdy chcesz uruchomić Tiramisu, będziesz musiał uruchomić aplikację Health and Safety Information. Jeśli chcesz automatycznie uruchamiać Tiramisu przy każdym rozruchu, możesz dodać aplikację Health and Safety do autoboot'owania. - -### Instrukcje - -1. Uruchom konsolę, aby uruchomić menu Wii U, uruchom aplikację Health and Safety Information i przytrzymaj przycisk X, aby otworzyć Environment Loader menu. -1. Przejdź za pomocą D-Pad do środowiska `installer` i naciśnij A, aby je uruchomić. -1. Naciśnij A, aby wybrać `Check`. -1. Wybierz `Boot options`. -1. Będziesz zapytany o to, czy chcesz zmienić aplikację/tutuł boot'owania. Naciśnij A, aby wybrać `Switch to PayloadLoader`. -1. Po zakończeniu procesu, naciśnij A, aby zamknąć konsolę. -1. Od teraz PayloadLoader będzie uruchamiany automatycznie przy każdym uruchomieniu konsoli. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Poruszaj się przy pomocy D-Pada, aby najechać na tytuł, który chcesz wybrać do autoboot'owania, a następnie naciśnij przycisk Y, aby ustawić ten tytuł na stałe do autoboot'owania. - - Naciśnij A, aby uruchomić wybrany tytuł. - diff --git a/translations/pl_PL/docs/user-guide/tiramisu/browser-exploit.md b/translations/pl_PL/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index 0a805fc4fcd..00000000000 --- a/translations/pl_PL/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Exploit przeglądarki - -Upewnij się, że Twój Wii U ma dostęp do Internetu, aby wykonać ten krok. - -### Instrukcje - -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. -1. Uruchom przeglądarkę internetową i przejdź do strony `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - Jeśli Twój Wii U utknie na białym ekranie lub się zawiesi, odczekaj kilka sekund. Jeśli nic się nie zmieni po kilku/kilkunastu sekundach, zrestartuj konsolę, [zresetuj zapisane dane przeglądarki](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) i spróbuj ponownie. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/pl_PL/docs/user-guide/tiramisu/finalizing-setup.md b/translations/pl_PL/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index e5216f176a2..00000000000 --- a/translations/pl_PL/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizowanie konfiguracji - -Teraz, gdy PayloadLoader, Environment Loader i Tiramisu są zainstalowane, zamierzamy zakończyć konfigurację. - -Zamierzamy sprawić, by środowisko Tiramisu ładowało się automatycznie kiedy konsola autobootuje aplikację Health and Safety Information (lub gdy uruchamiasz ją ręcznie, jeśli nie wybierzesz jej do autoboot), ustawimy menu Wii U jako domyślne, a także uruchomimy dodatkowe aplikacje homebrew. - -### Konfigurowanie PayloadLoader, Environment Loader i Tiramisu - -1. Włącz Wii U. - - Environment Loader powinien się pokazać. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. Będąc w Boot Selector, `Wii U Menu` powinno być już zaznaczone, Naciśnij Y, aby ustawić je jako domyślną opcję autobootingu, a następnie naciśnij A, aby uruchomić menu Wii U. - - Aby otworzyć Boot Selector Tiramisu w przyszłości, musisz przytrzymać START (+) podczas uruchamiania Wii U. - -?> Po uruchomieniu się środowiska Tiramisu możesz otworzyć Mii Maker w dowolnym momencie, aby dostać się do Homebrew Launchera.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** jest modułem Tiramisu, który umożliwia bezprzewodowe podłączenie najbardziej popularnych kontrolerów Bluetooth do Wii U (np. pad od PS4/PS3). Zobacz [tę stronę](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/), aby uzyskać więcej informacji. -- **Homebrew Appstore** pozwala przeglądać i pobierać aplikacje homebrew bezpośrednio z poziomu Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` z [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/pl_PL/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/pl_PL/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index e647d9ee435..00000000000 --- a/translations/pl_PL/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Instalacja PayloadLoader - -Teraz, gdy masz kopię zapasową NAND na wypadek, gdyby coś poszło nie tak, możesz zainstalować PayloadLoader w swoim systemie. - -Instalacja PayloadLoader pozwoli Ci uzyskać dostęp do Tiramisu poprzez uruchomienie aplikacji Health and Safety Information. - -!> Przywrócenie ustawień fabrycznych **nie** odinstaluje PayloadLoader. Sprawdź [odinstaluj PayloadLoader](../../uninstall-payloadloader), aby usunąć PayloadLoader. - -### Instrukcje - -?> Jeśli uruchomiłeś już Tiramisu, zrestartuj konsolę przed ponownym uruchomieniem exploitu przeglądarki. - -1. Wyciągnij kartę SD ze swojego komputera i podłącz ją do Wii U. -1. Wykonaj exploit przeglądarki internetowej, w sposób jaki [wcześniej objaśniliśmy](browser-exploit) ale tym razem, musisz przytrzymać przycisk X, aby otworzyć menu Environment Loader. -1. Przejdź za pomocą D-Pad do środowiska `installer` i naciśnij A, aby je uruchomić. -1. Naciśnij przycisk A, aby sprawdzić, czy możesz zainstalować PayloadLoader. - - Powinieneś zostać teraz poinformowany, że PayloadLoader może być zainstalowany w aplikacji Health and Safety Information. -1. Naciśnij A i wybierz `Install / Update`. -1. Zostaniesz zapytany, czy naprawdę chcesz zainstalować PayloadLoader. Użyj D-Pada, aby wybrać `Install` i naciśnij A. -1. Po zakończeniu procesu, naciśnij A, aby zamknąć konsolę. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/pl_PL/docs/user-guide/tiramisu/nand-backup.md b/translations/pl_PL/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 013b3820297..00000000000 --- a/translations/pl_PL/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Tworzenie kopii zapasowej NAND - -W sytuacji, gdyby cokolwiek poszło nie tak w późniejszym procesie i Twoja Wii U zostanie uszkodzona, przywracanie poprzednio utworzonej kopii zapasowej NAND może ją naprawić. - -### Instrukcje - -?> Wii U NAND w zależności od modelu ma pojemność 8GB albo 32GB. W związku z tym, aby utworzyć pełną kopię zapasową NAND Twojej konsoli, Twoja karta SD musi być większa niż rozmiar Twojego NAND. Jeśli nie masz wystarczająco dużej karty SD, możesz pominąć opcjonalną sekcję `MLC`, która zawiera zapisane pliki i dane gry i nie jest potrzebna do odzyskania w przypadku większości uszkodzeń. - -?> Przywracanie kopii zapasowej NAND na Wii U wymaga dodatkowych umiejętności sprzętowych i mikrolutowniczych.
Jednak tworzenie kopii zapasowej NAND jest **zawsze** przydatne, więc nie pomijaj tego etapu.
Twoja kopia zapasowa NAND jest unikalna dla Twojego systemu. Kopie zapasowe z innych konsoli **nie będą** działać. - -1. Przejdź do `nanddumper` za pomocą GamePad i naciśnij A, aby go uruchomić. -1. Użyj D-Pada na Wii U GamePad'zie, aby ustawić następującą konfigurację: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Naciśnij przycisk A, aby rozpocząć proces zrzucania na kartę SD. -1. Po zakończeniu procesu, wyłącz Wii U, wyciągnij kartę SD z Wii U i podłącz ją do komputera. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Usuń pliki z karty SD aby zwolnić miejsce. - -?> **Jeśli PayloadLoader jest już zainstalowany w aplikacji Health and Safety Information i uruchamia się przy starcie automatycznie, nie musisz kontynuwać dalej.** diff --git a/translations/pl_PL/docs/user-guide/tiramisu/sd-preparation.md b/translations/pl_PL/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index f2f4bcb7023..00000000000 --- a/translations/pl_PL/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Przygotowanie karty SD - -Teraz umieścimy wymagane pliki CFW i dodatkowe pliki homebrew na karcie SD. - -?> **Uwaga** Twoja karta SD będzie musiała być już sformatowana jako FAT32. Jeśli Twoja karta SD nie jest sformatowana do FAT32, użyj [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) z ustawieniem 32k (32768) jednostek alokacji aby ją sformatować. **Nie** oznaczaj karty SD jako `wiiu` bo spowoduje to problemy z homebrew. - -?> **Jeśli masz już jakąś inną istniejącą konfigurację CFW**
Dla **użytkowników CBHC**: przejdź do strony [Odinstaluj CBHC](../uninstall-cbhc) aby odinstalować CBHC.
Dla **użytkowników Haxchi**: odinstaluj aplikację Haxchi z z poziomu Data Management w System Settings.
Dla użytkowników **Mocha CFW (Indexiine)**: przejdź do strony [Odinstaluj Indexiine](../uninstall-indexiine) aby odinstalować Indexiine.
Dla użytkowników **Mocha CFW (Online Exploit)**: nie musisz nic usuwać. - -### Czego potrzebujesz - -- Najnowsze pliki z [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instrukcje - -1. Włóż kartę SD Wii U do komputera. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Skopiuj plik `01_sigpatches.rpx` do `/wiiu/environments/tiramisu/modules/setup` na karcie SD. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### Układ karty SD {docsify-ignore} - -
-Kliknij tutaj, aby wyświetlić końcowy układ plików na karcie SD. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/pl_PL/docs/user-guide/tiramisu/sidebar.md b/translations/pl_PL/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index db5d4df39f0..00000000000 --- a/translations/pl_PL/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Strona główna](../introduction) -- [Przygotowanie SD](sd-preparation) -- [Exploit przeglądarki](browser-exploit) -- [Tworzenie kopii zapasowej NAND](nand-backup) -- [Instalacja PayloadLoader](installing-payloadloader) -- [Autobootowanie Tiramisu](autobooting) -- [Finalizowanie konfiguracji](finalizing-setup) -- **Linki** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Przetłumacz](https://icongr.am/material/translate.svg?color=808080&size=16)Przetłumacz](https://hacks-guide.crowdin.com/u/projects/10) -- [Wesprzyj](../donations) -- [O tej stronie](../about) diff --git a/translations/pl_PL/docs/user-guide/vwii/browser-exploit.md b/translations/pl_PL/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index b6b50cb0547..00000000000 --- a/translations/pl_PL/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Uruchamianie Exploita ---- -Aby zainstalować kanał Homebrew, najpierw musimy utworzyć kopię zapasową NAND. Musimy też mieć możliwość uruchomienia Homebrew Launcher za pomocą exploitu, takiego jak Exploit przeglądarki. - -Upewnij się, że Twój Wii U ma dostęp do Internetu, aby wykonać ten krok. - -### Instrukcje {docsify-ignore} - -1. Uruchom wybrany exploit: - - Jeśli nigdy wcześniej nie uruchamiałeś homebrew, "uruchomienie exploitu" oznacza uruchomienie Exploitu przeglądarki (tzw. Browser Exploit). To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - Jeśli Twoja konsola Wii U utknie na białym ekranie lub się zawiesi, odczekaj kilka sekund. Jeśli nic się nie zmieni po kilku/kilkunastu sekundach, zrestartuj konsolę, [zresetuj zapisane dane przeglądarki](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) i spróbuj ponownie. - - - Jeśli używasz coldbootingu bezpośrednio do PayloadLoader, "uruchomienie exploitu" oznacza uruchomienie konsoli. - - - Jeśli uruchamiasz PayloadLoader za pośrednictwem aplikacji Health & Safety, "uruchomienie exploitu" oznacza uruchomienie aplikacji Health & Safety. - -1. Podczas uruchamiania wybranego przez Ciebie exploitu, przytrzymaj przycisk B (jeśli chcesz zrobić `kopię NAND`) lub przycisk X (jeśli chcesz przejść do `Instalacji Homebrew Channel`). diff --git a/translations/pl_PL/docs/user-guide/vwii/finalizing-setup.md b/translations/pl_PL/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index dd2065c38ab..00000000000 --- a/translations/pl_PL/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizowanie konfiguracji - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/pl_PL/docs/user-guide/vwii/installing-cioses.md b/translations/pl_PL/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index cd2eefead2f..00000000000 --- a/translations/pl_PL/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Instalacja cIOS - -1. Włącz Wii U i uruchom vWii. -2. Uruchom Kanał Homebrew Channel. -3. Uruchom instalator d2x cIOS. -4. Ustaw wszystko tak jak poniżej: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Ustaw wszystko tak jak poniżej: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Ustaw wszystko tak jak poniżej: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/pl_PL/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/pl_PL/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index 887cce23441..00000000000 --- a/translations/pl_PL/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Instalacja kanału Homebrew - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Następnie naciśnij przycisk HOME, aby powrócić do menu Wii U. -4. Uruchom vWii (ikonę Wii Menu). - - Jeśli instalacja zakończyła się sukcesem, powinieneś zobaczyć Kanał Homebrew w Wii Menu. diff --git a/translations/pl_PL/docs/user-guide/vwii/nand-backup.md b/translations/pl_PL/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index 56f00eaea19..00000000000 --- a/translations/pl_PL/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Kopia zapasowa NAND - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Użyj D-Pada na Wii U GamePad'zie, aby ustawić następującą konfigurację: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Naciśnij przycisk A, aby rozpocząć proces zrzucania na kartę SD. -4. Po zakończeniu procesu, wyłącz Wii U, wyciągnij kartę SD z Wii U i podłącz ją do komputera. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Usuń pliki z karty SD aby zwolnić miejsce. -7. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. diff --git a/translations/pl_PL/docs/user-guide/vwii/patching-ios80.md b/translations/pl_PL/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index bb905d15fe9..00000000000 --- a/translations/pl_PL/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Uruchom spatch'owany instalator IOS 80 dla vWii. -2. Przeczytaj ekran z ostrzeżeniem i poczekaj 30 sekund. -3. Naciśnij dowolny przycisk, aby zainstalować. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/pl_PL/docs/user-guide/vwii/sd-preparation.md b/translations/pl_PL/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 40921d46e0c..00000000000 --- a/translations/pl_PL/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -Ta strona poprowadzi Cię przez proces modyfikacji Twojego vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### Czego potrzebujesz - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instrukcje - -1. Włóż kartę SD Wii U do komputera. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. diff --git a/translations/pl_PL/docs/user-guide/vwii/sidebar.md b/translations/pl_PL/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index d0fd9b257f2..00000000000 --- a/translations/pl_PL/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**Modyfikacja vWii** -- [Strona główna](../introduction) -- [Modding vWii](vwii-modding) -- **Linki** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Przetłumacz](https://icongr.am/material/translate.svg?color=808080&size=16)Przetłumacz](https://hacks-guide.crowdin.com/u/projects/10) -- [Wesprzyj](../donations) -- [O tej stronie](../about) diff --git a/translations/pl_PL/docs/user-guide/vwii/vwii-modding.md b/translations/pl_PL/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/pl_PL/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/pl_PL/docs/vwii/vwii-modding.md b/translations/pl_PL/docs/vwii/vwii-modding.md deleted file mode 100644 index f08d12ab2f2..00000000000 --- a/translations/pl_PL/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -#Poradnik Modyfikacji vWii ---- -Ta strona poprowadzi Cię przez proces modyfikacji Twojego vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Uwaga** Twoja karta SD będzie musiała być już sformatowana jako FAT32. Jeśli Twoja karta SD nie jest sformatowana do FAT32, użyj [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) z ustawieniem 32k (32768) jednostek alokacji aby ją sformatować. **Nie** oznaczaj karty SD jako `wiiu` bo spowoduje to problemy z homebrew. - -?> Jeśli hakowałeś Wii U w przeszłości, możesz użyć tej samej karty SD w tym procesie. - - - -### Czego Potrzebujesz {docsify-ignore} - -- Najnowsze pliki z [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- Najnowsza wersja [vwii-compat-installer-](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- Instalator d2x cIOS. - -### SD Preparations {docsify-ignore} - -1. Włóż kartę SD Wii U do komputera. -1. Skopiuj folder `apps` z pliku Patched_IOS80_Installer_for_vWii.zip do katalogu głównego karty SD. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Skopiuj zawartość pobranego pliku Tiramisu *`.zip`* do katalogu głównego karty SD. -1. Skopiuj plik `compat_installer.elf` do folderu `wiiu/apps` w katalogu głównym karty SD. -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. - -### Kopia zapasowa NAND - -W sytuacji, gdyby cokolwiek poszło nie tak w późniejszym procesie i twoja Wii U zostanie uszkodzona, przywracanie poprzednio utworzonej kopii zapasowej NAND może ją naprawić. - -?> Jeśli ostatnio wykonałeś kopię zapasową NAND zawierającą SLCCMPT i OTP, możesz pominąć ten krok. - -1. Uruchom [Wii U NAND Dumper](vwii/browser-exploit). -1. Użyj D-Pada na Wii U GamePad'zie, aby ustawić następującą konfigurację: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Naciśnij przycisk A, aby rozpocząć proces zrzucania na kartę SD. -1. Po zakończeniu procesu, wyłącz Wii U, wyciągnij kartę SD z Wii U i podłącz ją do komputera. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Usuń pliki z karty SD aby zwolnić miejsce. -1. Wyjmij kartę SD ze swojego komputera i podłącz ją do konsoli Wii U. - -### Instalacja kanału Homebrew - -1. Uruchom [Tiramisu](vwii/browser-exploit). -1. Uruchom Homebrew Launcher, otwierając Mii Maker. -1. Uruchom compat_installer. -1. Naciśnij `A`, aby zainstalować Kanał Homebrew i poczekaj aż zobaczysz komunikat `Install succeeded`. Następnie naciśnij przycisk HOME, aby powrócić do menu Wii U. -1. Uruchom vWii (ikonę Wii Menu). - - Jeśli instalacja zakończyła się sukcesem, powinieneś zobaczyć Kanał Homebrew w Wii Menu. - -### Instalacja cIOS - -!> Upewnij się, że nie masz żadnych plików `.wad` gdziekolwiek indziej niż w folderze `aplikacji` na karcie SD. - -1. Włącz Wii U i uruchom vWii. -1. Uruchom Kanał Homebrew Channel. -1. Uruchom instalator d2x cIOS. -1. Ustaw wszystko tak jak poniżej: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Naciśnij przycisk `A`, aby zainstalować. -1. Ustaw wszystko tak jak poniżej: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Naciśnij przycisk `A`, aby zainstalować. -1. Ustaw wszystko tak jak poniżej: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Naciśnij przycisk `A`, aby zainstalować. -1. Naciśnij przycisk `B`, aby wyjść. - -### Patch'owanie IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Uruchom spatch'owany instalator IOS 80 dla vWii. -1. Przeczytaj ekran z ostrzeżeniem i poczekaj 30 sekund. -1. Naciśnij dowolny przycisk, aby zainstalować. -1. Poczekaj aż pojawi się komunikat IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/pt_BR/docs/extras/about.md b/translations/pt_BR/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/pt_BR/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/pt_BR/docs/extras/block-updates.md b/translations/pt_BR/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/pt_BR/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/pt_BR/docs/extras/configurable-payload.md b/translations/pt_BR/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/pt_BR/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/pt_BR/docs/extras/donations.md b/translations/pt_BR/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/pt_BR/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/pt_BR/docs/extras/dump-games.md b/translations/pt_BR/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/pt_BR/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/pt_BR/docs/extras/dump-wii-games.md b/translations/pt_BR/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/pt_BR/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/pt_BR/docs/extras/faq.md b/translations/pt_BR/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/pt_BR/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/pt_BR/docs/extras/find-wiiu-ip-address.md b/translations/pt_BR/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/pt_BR/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/pt_BR/docs/extras/unblock-updates.md b/translations/pt_BR/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/pt_BR/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/pt_BR/docs/extras/uninstall-cbhc.md b/translations/pt_BR/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/pt_BR/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/pt_BR/docs/extras/uninstall-indexiine.md b/translations/pt_BR/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/pt_BR/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/pt_BR/docs/extras/uninstall-payloadloader.md b/translations/pt_BR/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/pt_BR/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/pt_BR/docs/privacy/privacy-policy.md b/translations/pt_BR/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/pt_BR/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/pt_BR/docs/sidebar.md b/translations/pt_BR/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/pt_BR/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/pt_BR/docs/troubleshooting/common-issues-fixes.md b/translations/pt_BR/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/pt_BR/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/pt_BR/docs/troubleshooting/fix-errcode-112-1037.md b/translations/pt_BR/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/pt_BR/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/pt_BR/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/pt_BR/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/pt_BR/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/pt_BR/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/pt_BR/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/pt_BR/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/pt_BR/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/pt_BR/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/pt_BR/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/cbhc/nand-backup.md b/translations/pt_BR/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/pt_BR/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_BR/docs/user-guide/archive/cbhc/sidebar.md b/translations/pt_BR/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/cfw-choice.md b/translations/pt_BR/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/pt_BR/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/pt_BR/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/pt_BR/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/pt_BR/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/pt_BR/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/pt_BR/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/haxchi/nand-backup.md b/translations/pt_BR/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/pt_BR/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_BR/docs/user-guide/archive/haxchi/sidebar.md b/translations/pt_BR/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/pt_BR/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/mocha/sidebar.md b/translations/pt_BR/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/sidebar.md b/translations/pt_BR/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/pt_BR/docs/user-guide/archive/tiramisu/autoboot.md b/translations/pt_BR/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/pt_BR/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/pt_BR/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/pt_BR/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/pt_BR/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/pt_BR/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/pt_BR/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/pt_BR/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/pt_BR/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/pt_BR/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/pt_BR/docs/user-guide/archive/tiramisu/sidebar.md b/translations/pt_BR/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/pt_BR/docs/user-guide/archive/vwii/browser-exploit.md b/translations/pt_BR/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/pt_BR/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/pt_BR/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/pt_BR/docs/user-guide/archive/vwii/installing-cioses.md b/translations/pt_BR/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/pt_BR/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/pt_BR/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/pt_BR/docs/user-guide/archive/vwii/nand-backup.md b/translations/pt_BR/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/pt_BR/docs/user-guide/archive/vwii/patching-ios80.md b/translations/pt_BR/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/pt_BR/docs/user-guide/archive/vwii/sd-preparation.md b/translations/pt_BR/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/pt_BR/docs/user-guide/archive/vwii/sidebar.md b/translations/pt_BR/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/pt_BR/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/pt_BR/docs/user-guide/aroma/autoboot.md b/translations/pt_BR/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/pt_BR/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/pt_BR/docs/user-guide/aroma/browser-exploit.md b/translations/pt_BR/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/pt_BR/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/pt_BR/docs/user-guide/aroma/finalizing-setup.md b/translations/pt_BR/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/pt_BR/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/pt_BR/docs/user-guide/aroma/getting-started.md b/translations/pt_BR/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/pt_BR/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/pt_BR/docs/user-guide/aroma/installing-payloadloader.md b/translations/pt_BR/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/pt_BR/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/pt_BR/docs/user-guide/aroma/nand-backup.md b/translations/pt_BR/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/pt_BR/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/pt_BR/docs/user-guide/aroma/sd-preparation.md b/translations/pt_BR/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/pt_BR/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/pt_BR/docs/user-guide/aroma/sidebar.md b/translations/pt_BR/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/pt_BR/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/pt_BR/docs/user-guide/cbhc/browser-exploit.md b/translations/pt_BR/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/pt_BR/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/cbhc/ds-vc-choice.md b/translations/pt_BR/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/pt_BR/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/pt_BR/docs/user-guide/cbhc/installing-hblc.md b/translations/pt_BR/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/pt_BR/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/cbhc/launching-cfw.md b/translations/pt_BR/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/pt_BR/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/cbhc/nand-backup.md b/translations/pt_BR/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/pt_BR/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/cbhc/sd-preparation.md b/translations/pt_BR/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/pt_BR/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_BR/docs/user-guide/cbhc/sidebar.md b/translations/pt_BR/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/pt_BR/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/cfw-choice.md b/translations/pt_BR/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/pt_BR/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/pt_BR/docs/user-guide/haxchi/browser-exploit.md b/translations/pt_BR/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/pt_BR/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/haxchi/ds-vc-choice.md b/translations/pt_BR/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/pt_BR/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/pt_BR/docs/user-guide/haxchi/installing-hblc.md b/translations/pt_BR/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/pt_BR/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/haxchi/launching-cfw.md b/translations/pt_BR/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/pt_BR/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/haxchi/nand-backup.md b/translations/pt_BR/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/pt_BR/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/haxchi/sd-preparation.md b/translations/pt_BR/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/pt_BR/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_BR/docs/user-guide/haxchi/sidebar.md b/translations/pt_BR/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/pt_BR/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/introduction.md b/translations/pt_BR/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/pt_BR/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/pt_BR/docs/user-guide/mocha/entrypoint-choice.md b/translations/pt_BR/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/pt_BR/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/pt_BR/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/pt_BR/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/pt_BR/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/pt_BR/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/pt_BR/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_BR/docs/user-guide/mocha/indexiine/sidebar.md b/translations/pt_BR/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/pt_BR/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/pt_BR/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/pt_BR/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/pt_BR/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_BR/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/pt_BR/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/mocha/sidebar.md b/translations/pt_BR/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/pt_BR/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/tiramisu/autoboot.md b/translations/pt_BR/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/pt_BR/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/pt_BR/docs/user-guide/tiramisu/browser-exploit.md b/translations/pt_BR/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/pt_BR/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/pt_BR/docs/user-guide/tiramisu/finalizing-setup.md b/translations/pt_BR/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/pt_BR/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/pt_BR/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/pt_BR/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/pt_BR/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/pt_BR/docs/user-guide/tiramisu/nand-backup.md b/translations/pt_BR/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/pt_BR/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/pt_BR/docs/user-guide/tiramisu/sd-preparation.md b/translations/pt_BR/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/pt_BR/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/pt_BR/docs/user-guide/tiramisu/sidebar.md b/translations/pt_BR/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/pt_BR/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/pt_BR/docs/user-guide/vwii/browser-exploit.md b/translations/pt_BR/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/pt_BR/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/pt_BR/docs/user-guide/vwii/finalizing-setup.md b/translations/pt_BR/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/pt_BR/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/pt_BR/docs/user-guide/vwii/installing-cioses.md b/translations/pt_BR/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/pt_BR/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/pt_BR/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/pt_BR/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/pt_BR/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/pt_BR/docs/user-guide/vwii/nand-backup.md b/translations/pt_BR/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/pt_BR/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/pt_BR/docs/user-guide/vwii/patching-ios80.md b/translations/pt_BR/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/pt_BR/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/pt_BR/docs/user-guide/vwii/sd-preparation.md b/translations/pt_BR/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/pt_BR/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/pt_BR/docs/user-guide/vwii/sidebar.md b/translations/pt_BR/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/pt_BR/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/pt_BR/docs/user-guide/vwii/vwii-modding.md b/translations/pt_BR/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/pt_BR/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/pt_BR/docs/vwii/vwii-modding.md b/translations/pt_BR/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/pt_BR/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/pt_PT/docs/extras/about.md b/translations/pt_PT/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/pt_PT/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/pt_PT/docs/extras/block-updates.md b/translations/pt_PT/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/pt_PT/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/pt_PT/docs/extras/configurable-payload.md b/translations/pt_PT/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/pt_PT/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/pt_PT/docs/extras/donations.md b/translations/pt_PT/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/pt_PT/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/pt_PT/docs/extras/dump-games.md b/translations/pt_PT/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/pt_PT/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/pt_PT/docs/extras/dump-wii-games.md b/translations/pt_PT/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/pt_PT/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/pt_PT/docs/extras/faq.md b/translations/pt_PT/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/pt_PT/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/pt_PT/docs/extras/find-wiiu-ip-address.md b/translations/pt_PT/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/pt_PT/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/pt_PT/docs/extras/unblock-updates.md b/translations/pt_PT/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/pt_PT/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/pt_PT/docs/extras/uninstall-cbhc.md b/translations/pt_PT/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/pt_PT/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/pt_PT/docs/extras/uninstall-indexiine.md b/translations/pt_PT/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/pt_PT/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/pt_PT/docs/extras/uninstall-payloadloader.md b/translations/pt_PT/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/pt_PT/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/pt_PT/docs/privacy/privacy-policy.md b/translations/pt_PT/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/pt_PT/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/pt_PT/docs/sidebar.md b/translations/pt_PT/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/pt_PT/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/pt_PT/docs/troubleshooting/common-issues-fixes.md b/translations/pt_PT/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/pt_PT/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/pt_PT/docs/troubleshooting/fix-errcode-112-1037.md b/translations/pt_PT/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/pt_PT/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/pt_PT/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/pt_PT/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/pt_PT/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/pt_PT/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/pt_PT/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/pt_PT/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/pt_PT/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/pt_PT/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/pt_PT/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/cbhc/nand-backup.md b/translations/pt_PT/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/pt_PT/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_PT/docs/user-guide/archive/cbhc/sidebar.md b/translations/pt_PT/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/cfw-choice.md b/translations/pt_PT/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/pt_PT/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/pt_PT/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/pt_PT/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/pt_PT/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/pt_PT/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/pt_PT/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/haxchi/nand-backup.md b/translations/pt_PT/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/pt_PT/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_PT/docs/user-guide/archive/haxchi/sidebar.md b/translations/pt_PT/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/pt_PT/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/mocha/sidebar.md b/translations/pt_PT/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/sidebar.md b/translations/pt_PT/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/pt_PT/docs/user-guide/archive/tiramisu/autoboot.md b/translations/pt_PT/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/pt_PT/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/pt_PT/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/pt_PT/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/pt_PT/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/pt_PT/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/pt_PT/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/pt_PT/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/pt_PT/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/pt_PT/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/pt_PT/docs/user-guide/archive/tiramisu/sidebar.md b/translations/pt_PT/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/pt_PT/docs/user-guide/archive/vwii/browser-exploit.md b/translations/pt_PT/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/pt_PT/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/pt_PT/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/pt_PT/docs/user-guide/archive/vwii/installing-cioses.md b/translations/pt_PT/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/pt_PT/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/pt_PT/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/pt_PT/docs/user-guide/archive/vwii/nand-backup.md b/translations/pt_PT/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/pt_PT/docs/user-guide/archive/vwii/patching-ios80.md b/translations/pt_PT/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/pt_PT/docs/user-guide/archive/vwii/sd-preparation.md b/translations/pt_PT/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/pt_PT/docs/user-guide/archive/vwii/sidebar.md b/translations/pt_PT/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/pt_PT/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/pt_PT/docs/user-guide/aroma/autoboot.md b/translations/pt_PT/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/pt_PT/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/pt_PT/docs/user-guide/aroma/browser-exploit.md b/translations/pt_PT/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/pt_PT/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/pt_PT/docs/user-guide/aroma/finalizing-setup.md b/translations/pt_PT/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/pt_PT/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/pt_PT/docs/user-guide/aroma/getting-started.md b/translations/pt_PT/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/pt_PT/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/pt_PT/docs/user-guide/aroma/installing-payloadloader.md b/translations/pt_PT/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/pt_PT/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/pt_PT/docs/user-guide/aroma/nand-backup.md b/translations/pt_PT/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/pt_PT/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/pt_PT/docs/user-guide/aroma/sd-preparation.md b/translations/pt_PT/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/pt_PT/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/pt_PT/docs/user-guide/aroma/sidebar.md b/translations/pt_PT/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/pt_PT/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/pt_PT/docs/user-guide/cbhc/browser-exploit.md b/translations/pt_PT/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/pt_PT/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/cbhc/ds-vc-choice.md b/translations/pt_PT/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/pt_PT/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/pt_PT/docs/user-guide/cbhc/installing-hblc.md b/translations/pt_PT/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/pt_PT/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/cbhc/launching-cfw.md b/translations/pt_PT/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/pt_PT/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/cbhc/nand-backup.md b/translations/pt_PT/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/pt_PT/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/cbhc/sd-preparation.md b/translations/pt_PT/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/pt_PT/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_PT/docs/user-guide/cbhc/sidebar.md b/translations/pt_PT/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/pt_PT/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/cfw-choice.md b/translations/pt_PT/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/pt_PT/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/pt_PT/docs/user-guide/haxchi/browser-exploit.md b/translations/pt_PT/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/pt_PT/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/haxchi/ds-vc-choice.md b/translations/pt_PT/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/pt_PT/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/pt_PT/docs/user-guide/haxchi/installing-hblc.md b/translations/pt_PT/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/pt_PT/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/haxchi/launching-cfw.md b/translations/pt_PT/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/pt_PT/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/haxchi/nand-backup.md b/translations/pt_PT/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/pt_PT/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/haxchi/sd-preparation.md b/translations/pt_PT/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/pt_PT/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_PT/docs/user-guide/haxchi/sidebar.md b/translations/pt_PT/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/pt_PT/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/introduction.md b/translations/pt_PT/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/pt_PT/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/pt_PT/docs/user-guide/mocha/entrypoint-choice.md b/translations/pt_PT/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/pt_PT/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/pt_PT/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/pt_PT/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/pt_PT/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/pt_PT/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/pt_PT/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_PT/docs/user-guide/mocha/indexiine/sidebar.md b/translations/pt_PT/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/pt_PT/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/pt_PT/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/pt_PT/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/pt_PT/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/pt_PT/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/pt_PT/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/mocha/sidebar.md b/translations/pt_PT/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/pt_PT/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/tiramisu/autoboot.md b/translations/pt_PT/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/pt_PT/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/pt_PT/docs/user-guide/tiramisu/browser-exploit.md b/translations/pt_PT/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/pt_PT/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/pt_PT/docs/user-guide/tiramisu/finalizing-setup.md b/translations/pt_PT/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/pt_PT/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/pt_PT/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/pt_PT/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/pt_PT/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/pt_PT/docs/user-guide/tiramisu/nand-backup.md b/translations/pt_PT/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/pt_PT/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/pt_PT/docs/user-guide/tiramisu/sd-preparation.md b/translations/pt_PT/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/pt_PT/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/pt_PT/docs/user-guide/tiramisu/sidebar.md b/translations/pt_PT/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/pt_PT/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/pt_PT/docs/user-guide/vwii/browser-exploit.md b/translations/pt_PT/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/pt_PT/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/pt_PT/docs/user-guide/vwii/finalizing-setup.md b/translations/pt_PT/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/pt_PT/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/pt_PT/docs/user-guide/vwii/installing-cioses.md b/translations/pt_PT/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/pt_PT/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/pt_PT/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/pt_PT/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/pt_PT/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/pt_PT/docs/user-guide/vwii/nand-backup.md b/translations/pt_PT/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/pt_PT/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/pt_PT/docs/user-guide/vwii/patching-ios80.md b/translations/pt_PT/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/pt_PT/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/pt_PT/docs/user-guide/vwii/sd-preparation.md b/translations/pt_PT/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/pt_PT/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/pt_PT/docs/user-guide/vwii/sidebar.md b/translations/pt_PT/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/pt_PT/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/pt_PT/docs/user-guide/vwii/vwii-modding.md b/translations/pt_PT/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/pt_PT/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/pt_PT/docs/vwii/vwii-modding.md b/translations/pt_PT/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/pt_PT/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ro_RO/docs/extras/about.md b/translations/ro_RO/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/ro_RO/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/ro_RO/docs/extras/block-updates.md b/translations/ro_RO/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/ro_RO/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/ro_RO/docs/extras/configurable-payload.md b/translations/ro_RO/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/ro_RO/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/ro_RO/docs/extras/donations.md b/translations/ro_RO/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/ro_RO/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/ro_RO/docs/extras/dump-games.md b/translations/ro_RO/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/ro_RO/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/ro_RO/docs/extras/dump-wii-games.md b/translations/ro_RO/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/ro_RO/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/ro_RO/docs/extras/faq.md b/translations/ro_RO/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/ro_RO/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/ro_RO/docs/extras/find-wiiu-ip-address.md b/translations/ro_RO/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/ro_RO/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/ro_RO/docs/extras/unblock-updates.md b/translations/ro_RO/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/ro_RO/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/ro_RO/docs/extras/uninstall-cbhc.md b/translations/ro_RO/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/ro_RO/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/ro_RO/docs/extras/uninstall-indexiine.md b/translations/ro_RO/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/ro_RO/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/ro_RO/docs/extras/uninstall-payloadloader.md b/translations/ro_RO/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/ro_RO/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/ro_RO/docs/privacy/privacy-policy.md b/translations/ro_RO/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/ro_RO/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/ro_RO/docs/sidebar.md b/translations/ro_RO/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/ro_RO/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/ro_RO/docs/troubleshooting/common-issues-fixes.md b/translations/ro_RO/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/ro_RO/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/ro_RO/docs/troubleshooting/fix-errcode-112-1037.md b/translations/ro_RO/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/ro_RO/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/ro_RO/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/ro_RO/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/ro_RO/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/ro_RO/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/ro_RO/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/ro_RO/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ro_RO/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/ro_RO/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/ro_RO/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/cbhc/nand-backup.md b/translations/ro_RO/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/ro_RO/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ro_RO/docs/user-guide/archive/cbhc/sidebar.md b/translations/ro_RO/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/cfw-choice.md b/translations/ro_RO/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ro_RO/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/ro_RO/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/ro_RO/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ro_RO/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/ro_RO/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/ro_RO/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/haxchi/nand-backup.md b/translations/ro_RO/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/ro_RO/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ro_RO/docs/user-guide/archive/haxchi/sidebar.md b/translations/ro_RO/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/ro_RO/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/mocha/sidebar.md b/translations/ro_RO/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/sidebar.md b/translations/ro_RO/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/ro_RO/docs/user-guide/archive/tiramisu/autoboot.md b/translations/ro_RO/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ro_RO/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/ro_RO/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ro_RO/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/ro_RO/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/ro_RO/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/ro_RO/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/ro_RO/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ro_RO/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/ro_RO/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ro_RO/docs/user-guide/archive/tiramisu/sidebar.md b/translations/ro_RO/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ro_RO/docs/user-guide/archive/vwii/browser-exploit.md b/translations/ro_RO/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ro_RO/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/ro_RO/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ro_RO/docs/user-guide/archive/vwii/installing-cioses.md b/translations/ro_RO/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ro_RO/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/ro_RO/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ro_RO/docs/user-guide/archive/vwii/nand-backup.md b/translations/ro_RO/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ro_RO/docs/user-guide/archive/vwii/patching-ios80.md b/translations/ro_RO/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ro_RO/docs/user-guide/archive/vwii/sd-preparation.md b/translations/ro_RO/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ro_RO/docs/user-guide/archive/vwii/sidebar.md b/translations/ro_RO/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/ro_RO/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ro_RO/docs/user-guide/aroma/autoboot.md b/translations/ro_RO/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/ro_RO/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/ro_RO/docs/user-guide/aroma/browser-exploit.md b/translations/ro_RO/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/ro_RO/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/ro_RO/docs/user-guide/aroma/finalizing-setup.md b/translations/ro_RO/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/ro_RO/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/ro_RO/docs/user-guide/aroma/getting-started.md b/translations/ro_RO/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/ro_RO/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/ro_RO/docs/user-guide/aroma/installing-payloadloader.md b/translations/ro_RO/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/ro_RO/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/ro_RO/docs/user-guide/aroma/nand-backup.md b/translations/ro_RO/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/ro_RO/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/ro_RO/docs/user-guide/aroma/sd-preparation.md b/translations/ro_RO/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/ro_RO/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/ro_RO/docs/user-guide/aroma/sidebar.md b/translations/ro_RO/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/ro_RO/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ro_RO/docs/user-guide/cbhc/browser-exploit.md b/translations/ro_RO/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/ro_RO/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/cbhc/ds-vc-choice.md b/translations/ro_RO/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/ro_RO/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ro_RO/docs/user-guide/cbhc/installing-hblc.md b/translations/ro_RO/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/ro_RO/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/cbhc/launching-cfw.md b/translations/ro_RO/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/ro_RO/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/cbhc/nand-backup.md b/translations/ro_RO/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/ro_RO/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/cbhc/sd-preparation.md b/translations/ro_RO/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/ro_RO/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ro_RO/docs/user-guide/cbhc/sidebar.md b/translations/ro_RO/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/ro_RO/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/cfw-choice.md b/translations/ro_RO/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/ro_RO/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ro_RO/docs/user-guide/haxchi/browser-exploit.md b/translations/ro_RO/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/ro_RO/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/haxchi/ds-vc-choice.md b/translations/ro_RO/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/ro_RO/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ro_RO/docs/user-guide/haxchi/installing-hblc.md b/translations/ro_RO/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/ro_RO/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/haxchi/launching-cfw.md b/translations/ro_RO/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/ro_RO/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/haxchi/nand-backup.md b/translations/ro_RO/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/ro_RO/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/haxchi/sd-preparation.md b/translations/ro_RO/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/ro_RO/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ro_RO/docs/user-guide/haxchi/sidebar.md b/translations/ro_RO/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/ro_RO/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/introduction.md b/translations/ro_RO/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/ro_RO/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/ro_RO/docs/user-guide/mocha/entrypoint-choice.md b/translations/ro_RO/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/ro_RO/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/ro_RO/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/ro_RO/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/ro_RO/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/ro_RO/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/ro_RO/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ro_RO/docs/user-guide/mocha/indexiine/sidebar.md b/translations/ro_RO/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/ro_RO/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/ro_RO/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/ro_RO/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/ro_RO/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ro_RO/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/ro_RO/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/mocha/sidebar.md b/translations/ro_RO/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/ro_RO/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/tiramisu/autoboot.md b/translations/ro_RO/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/ro_RO/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ro_RO/docs/user-guide/tiramisu/browser-exploit.md b/translations/ro_RO/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ro_RO/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ro_RO/docs/user-guide/tiramisu/finalizing-setup.md b/translations/ro_RO/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/ro_RO/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/ro_RO/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/ro_RO/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ro_RO/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ro_RO/docs/user-guide/tiramisu/nand-backup.md b/translations/ro_RO/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/ro_RO/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ro_RO/docs/user-guide/tiramisu/sd-preparation.md b/translations/ro_RO/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/ro_RO/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ro_RO/docs/user-guide/tiramisu/sidebar.md b/translations/ro_RO/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/ro_RO/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ro_RO/docs/user-guide/vwii/browser-exploit.md b/translations/ro_RO/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ro_RO/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ro_RO/docs/user-guide/vwii/finalizing-setup.md b/translations/ro_RO/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ro_RO/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ro_RO/docs/user-guide/vwii/installing-cioses.md b/translations/ro_RO/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ro_RO/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ro_RO/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/ro_RO/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ro_RO/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ro_RO/docs/user-guide/vwii/nand-backup.md b/translations/ro_RO/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ro_RO/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ro_RO/docs/user-guide/vwii/patching-ios80.md b/translations/ro_RO/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ro_RO/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ro_RO/docs/user-guide/vwii/sd-preparation.md b/translations/ro_RO/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ro_RO/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ro_RO/docs/user-guide/vwii/sidebar.md b/translations/ro_RO/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/ro_RO/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ro_RO/docs/user-guide/vwii/vwii-modding.md b/translations/ro_RO/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/ro_RO/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/ro_RO/docs/vwii/vwii-modding.md b/translations/ro_RO/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/ro_RO/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ru_RU/docs/extras/about.md b/translations/ru_RU/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/ru_RU/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/ru_RU/docs/extras/block-updates.md b/translations/ru_RU/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/ru_RU/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/ru_RU/docs/extras/configurable-payload.md b/translations/ru_RU/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/ru_RU/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/ru_RU/docs/extras/donations.md b/translations/ru_RU/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/ru_RU/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/ru_RU/docs/extras/dump-games.md b/translations/ru_RU/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/ru_RU/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/ru_RU/docs/extras/dump-wii-games.md b/translations/ru_RU/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/ru_RU/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/ru_RU/docs/extras/faq.md b/translations/ru_RU/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/ru_RU/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/ru_RU/docs/extras/find-wiiu-ip-address.md b/translations/ru_RU/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/ru_RU/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/ru_RU/docs/extras/unblock-updates.md b/translations/ru_RU/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/ru_RU/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/ru_RU/docs/extras/uninstall-cbhc.md b/translations/ru_RU/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/ru_RU/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/ru_RU/docs/extras/uninstall-indexiine.md b/translations/ru_RU/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/ru_RU/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/ru_RU/docs/extras/uninstall-payloadloader.md b/translations/ru_RU/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/ru_RU/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/ru_RU/docs/privacy/privacy-policy.md b/translations/ru_RU/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/ru_RU/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/ru_RU/docs/sidebar.md b/translations/ru_RU/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/ru_RU/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/ru_RU/docs/troubleshooting/common-issues-fixes.md b/translations/ru_RU/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/ru_RU/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/ru_RU/docs/troubleshooting/fix-errcode-112-1037.md b/translations/ru_RU/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/ru_RU/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/ru_RU/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/ru_RU/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/ru_RU/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/ru_RU/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/ru_RU/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/ru_RU/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ru_RU/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/ru_RU/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/ru_RU/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/cbhc/nand-backup.md b/translations/ru_RU/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/ru_RU/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ru_RU/docs/user-guide/archive/cbhc/sidebar.md b/translations/ru_RU/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/cfw-choice.md b/translations/ru_RU/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ru_RU/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/ru_RU/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/ru_RU/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/ru_RU/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/ru_RU/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/ru_RU/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/haxchi/nand-backup.md b/translations/ru_RU/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/ru_RU/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ru_RU/docs/user-guide/archive/haxchi/sidebar.md b/translations/ru_RU/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/ru_RU/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/mocha/sidebar.md b/translations/ru_RU/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/sidebar.md b/translations/ru_RU/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/ru_RU/docs/user-guide/archive/tiramisu/autoboot.md b/translations/ru_RU/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ru_RU/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/ru_RU/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ru_RU/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/ru_RU/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/ru_RU/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/ru_RU/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/ru_RU/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ru_RU/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/ru_RU/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ru_RU/docs/user-guide/archive/tiramisu/sidebar.md b/translations/ru_RU/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ru_RU/docs/user-guide/archive/vwii/browser-exploit.md b/translations/ru_RU/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ru_RU/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/ru_RU/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ru_RU/docs/user-guide/archive/vwii/installing-cioses.md b/translations/ru_RU/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ru_RU/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/ru_RU/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ru_RU/docs/user-guide/archive/vwii/nand-backup.md b/translations/ru_RU/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ru_RU/docs/user-guide/archive/vwii/patching-ios80.md b/translations/ru_RU/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ru_RU/docs/user-guide/archive/vwii/sd-preparation.md b/translations/ru_RU/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ru_RU/docs/user-guide/archive/vwii/sidebar.md b/translations/ru_RU/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/ru_RU/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ru_RU/docs/user-guide/aroma/autoboot.md b/translations/ru_RU/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/ru_RU/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/ru_RU/docs/user-guide/aroma/browser-exploit.md b/translations/ru_RU/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/ru_RU/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/ru_RU/docs/user-guide/aroma/finalizing-setup.md b/translations/ru_RU/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/ru_RU/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/ru_RU/docs/user-guide/aroma/getting-started.md b/translations/ru_RU/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/ru_RU/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/ru_RU/docs/user-guide/aroma/installing-payloadloader.md b/translations/ru_RU/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/ru_RU/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/ru_RU/docs/user-guide/aroma/nand-backup.md b/translations/ru_RU/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/ru_RU/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/ru_RU/docs/user-guide/aroma/sd-preparation.md b/translations/ru_RU/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/ru_RU/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/ru_RU/docs/user-guide/aroma/sidebar.md b/translations/ru_RU/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/ru_RU/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ru_RU/docs/user-guide/cbhc/browser-exploit.md b/translations/ru_RU/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/ru_RU/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/cbhc/ds-vc-choice.md b/translations/ru_RU/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/ru_RU/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ru_RU/docs/user-guide/cbhc/installing-hblc.md b/translations/ru_RU/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/ru_RU/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/cbhc/launching-cfw.md b/translations/ru_RU/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/ru_RU/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/cbhc/nand-backup.md b/translations/ru_RU/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/ru_RU/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/cbhc/sd-preparation.md b/translations/ru_RU/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/ru_RU/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ru_RU/docs/user-guide/cbhc/sidebar.md b/translations/ru_RU/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/ru_RU/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/cfw-choice.md b/translations/ru_RU/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/ru_RU/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/ru_RU/docs/user-guide/haxchi/browser-exploit.md b/translations/ru_RU/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/ru_RU/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/haxchi/ds-vc-choice.md b/translations/ru_RU/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/ru_RU/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/ru_RU/docs/user-guide/haxchi/installing-hblc.md b/translations/ru_RU/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/ru_RU/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/haxchi/launching-cfw.md b/translations/ru_RU/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/ru_RU/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/haxchi/nand-backup.md b/translations/ru_RU/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/ru_RU/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/haxchi/sd-preparation.md b/translations/ru_RU/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/ru_RU/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ru_RU/docs/user-guide/haxchi/sidebar.md b/translations/ru_RU/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/ru_RU/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/introduction.md b/translations/ru_RU/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/ru_RU/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/ru_RU/docs/user-guide/mocha/entrypoint-choice.md b/translations/ru_RU/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/ru_RU/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/ru_RU/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/ru_RU/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/ru_RU/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/ru_RU/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/ru_RU/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ru_RU/docs/user-guide/mocha/indexiine/sidebar.md b/translations/ru_RU/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/ru_RU/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/ru_RU/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/ru_RU/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/ru_RU/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/ru_RU/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/ru_RU/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/mocha/sidebar.md b/translations/ru_RU/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/ru_RU/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/tiramisu/autoboot.md b/translations/ru_RU/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/ru_RU/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/ru_RU/docs/user-guide/tiramisu/browser-exploit.md b/translations/ru_RU/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/ru_RU/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/ru_RU/docs/user-guide/tiramisu/finalizing-setup.md b/translations/ru_RU/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/ru_RU/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/ru_RU/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/ru_RU/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/ru_RU/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/ru_RU/docs/user-guide/tiramisu/nand-backup.md b/translations/ru_RU/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/ru_RU/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/ru_RU/docs/user-guide/tiramisu/sd-preparation.md b/translations/ru_RU/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/ru_RU/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/ru_RU/docs/user-guide/tiramisu/sidebar.md b/translations/ru_RU/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/ru_RU/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ru_RU/docs/user-guide/vwii/browser-exploit.md b/translations/ru_RU/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/ru_RU/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/ru_RU/docs/user-guide/vwii/finalizing-setup.md b/translations/ru_RU/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/ru_RU/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/ru_RU/docs/user-guide/vwii/installing-cioses.md b/translations/ru_RU/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/ru_RU/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/ru_RU/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/ru_RU/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/ru_RU/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/ru_RU/docs/user-guide/vwii/nand-backup.md b/translations/ru_RU/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/ru_RU/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ru_RU/docs/user-guide/vwii/patching-ios80.md b/translations/ru_RU/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/ru_RU/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/ru_RU/docs/user-guide/vwii/sd-preparation.md b/translations/ru_RU/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/ru_RU/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/ru_RU/docs/user-guide/vwii/sidebar.md b/translations/ru_RU/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/ru_RU/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/ru_RU/docs/user-guide/vwii/vwii-modding.md b/translations/ru_RU/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/ru_RU/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/ru_RU/docs/vwii/vwii-modding.md b/translations/ru_RU/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/ru_RU/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/sv_SE/docs/extras/about.md b/translations/sv_SE/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/sv_SE/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/sv_SE/docs/extras/block-updates.md b/translations/sv_SE/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/sv_SE/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/sv_SE/docs/extras/configurable-payload.md b/translations/sv_SE/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/sv_SE/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/sv_SE/docs/extras/donations.md b/translations/sv_SE/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/sv_SE/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/sv_SE/docs/extras/dump-games.md b/translations/sv_SE/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/sv_SE/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/sv_SE/docs/extras/dump-wii-games.md b/translations/sv_SE/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/sv_SE/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/sv_SE/docs/extras/faq.md b/translations/sv_SE/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/sv_SE/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/sv_SE/docs/extras/find-wiiu-ip-address.md b/translations/sv_SE/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/sv_SE/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/sv_SE/docs/extras/unblock-updates.md b/translations/sv_SE/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/sv_SE/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/sv_SE/docs/extras/uninstall-cbhc.md b/translations/sv_SE/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/sv_SE/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/sv_SE/docs/extras/uninstall-indexiine.md b/translations/sv_SE/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/sv_SE/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/sv_SE/docs/extras/uninstall-payloadloader.md b/translations/sv_SE/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/sv_SE/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/sv_SE/docs/privacy/privacy-policy.md b/translations/sv_SE/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/sv_SE/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/sv_SE/docs/sidebar.md b/translations/sv_SE/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/sv_SE/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/sv_SE/docs/troubleshooting/common-issues-fixes.md b/translations/sv_SE/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/sv_SE/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/sv_SE/docs/troubleshooting/fix-errcode-112-1037.md b/translations/sv_SE/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/sv_SE/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/sv_SE/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/sv_SE/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/sv_SE/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/sv_SE/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/sv_SE/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/sv_SE/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/sv_SE/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/sv_SE/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/sv_SE/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/cbhc/nand-backup.md b/translations/sv_SE/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/sv_SE/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/sv_SE/docs/user-guide/archive/cbhc/sidebar.md b/translations/sv_SE/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/cfw-choice.md b/translations/sv_SE/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/sv_SE/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/sv_SE/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/sv_SE/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/sv_SE/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/sv_SE/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/sv_SE/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/haxchi/nand-backup.md b/translations/sv_SE/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/sv_SE/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/sv_SE/docs/user-guide/archive/haxchi/sidebar.md b/translations/sv_SE/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/sv_SE/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/mocha/sidebar.md b/translations/sv_SE/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/sidebar.md b/translations/sv_SE/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/sv_SE/docs/user-guide/archive/tiramisu/autoboot.md b/translations/sv_SE/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/sv_SE/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/sv_SE/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/sv_SE/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/sv_SE/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/sv_SE/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/sv_SE/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/sv_SE/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/sv_SE/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/sv_SE/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/sv_SE/docs/user-guide/archive/tiramisu/sidebar.md b/translations/sv_SE/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/sv_SE/docs/user-guide/archive/vwii/browser-exploit.md b/translations/sv_SE/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/sv_SE/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/sv_SE/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/sv_SE/docs/user-guide/archive/vwii/installing-cioses.md b/translations/sv_SE/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/sv_SE/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/sv_SE/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/sv_SE/docs/user-guide/archive/vwii/nand-backup.md b/translations/sv_SE/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/sv_SE/docs/user-guide/archive/vwii/patching-ios80.md b/translations/sv_SE/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/sv_SE/docs/user-guide/archive/vwii/sd-preparation.md b/translations/sv_SE/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/sv_SE/docs/user-guide/archive/vwii/sidebar.md b/translations/sv_SE/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/sv_SE/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/sv_SE/docs/user-guide/aroma/autoboot.md b/translations/sv_SE/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/sv_SE/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/sv_SE/docs/user-guide/aroma/browser-exploit.md b/translations/sv_SE/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/sv_SE/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/sv_SE/docs/user-guide/aroma/finalizing-setup.md b/translations/sv_SE/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/sv_SE/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/sv_SE/docs/user-guide/aroma/getting-started.md b/translations/sv_SE/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/sv_SE/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/sv_SE/docs/user-guide/aroma/installing-payloadloader.md b/translations/sv_SE/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/sv_SE/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/sv_SE/docs/user-guide/aroma/nand-backup.md b/translations/sv_SE/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/sv_SE/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/sv_SE/docs/user-guide/aroma/sd-preparation.md b/translations/sv_SE/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/sv_SE/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/sv_SE/docs/user-guide/aroma/sidebar.md b/translations/sv_SE/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/sv_SE/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/sv_SE/docs/user-guide/cbhc/browser-exploit.md b/translations/sv_SE/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/sv_SE/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/cbhc/ds-vc-choice.md b/translations/sv_SE/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/sv_SE/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/sv_SE/docs/user-guide/cbhc/installing-hblc.md b/translations/sv_SE/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/sv_SE/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/cbhc/launching-cfw.md b/translations/sv_SE/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/sv_SE/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/cbhc/nand-backup.md b/translations/sv_SE/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/sv_SE/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/cbhc/sd-preparation.md b/translations/sv_SE/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/sv_SE/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/sv_SE/docs/user-guide/cbhc/sidebar.md b/translations/sv_SE/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/sv_SE/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/cfw-choice.md b/translations/sv_SE/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/sv_SE/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/sv_SE/docs/user-guide/haxchi/browser-exploit.md b/translations/sv_SE/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/sv_SE/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/haxchi/ds-vc-choice.md b/translations/sv_SE/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/sv_SE/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/sv_SE/docs/user-guide/haxchi/installing-hblc.md b/translations/sv_SE/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/sv_SE/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/haxchi/launching-cfw.md b/translations/sv_SE/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/sv_SE/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/haxchi/nand-backup.md b/translations/sv_SE/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/sv_SE/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/haxchi/sd-preparation.md b/translations/sv_SE/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/sv_SE/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/sv_SE/docs/user-guide/haxchi/sidebar.md b/translations/sv_SE/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/sv_SE/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/introduction.md b/translations/sv_SE/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/sv_SE/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/sv_SE/docs/user-guide/mocha/entrypoint-choice.md b/translations/sv_SE/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/sv_SE/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/sv_SE/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/sv_SE/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/sv_SE/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/sv_SE/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/sv_SE/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/sv_SE/docs/user-guide/mocha/indexiine/sidebar.md b/translations/sv_SE/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/sv_SE/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/sv_SE/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/sv_SE/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/sv_SE/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/sv_SE/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/sv_SE/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/mocha/sidebar.md b/translations/sv_SE/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/sv_SE/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/tiramisu/autoboot.md b/translations/sv_SE/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/sv_SE/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/sv_SE/docs/user-guide/tiramisu/browser-exploit.md b/translations/sv_SE/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/sv_SE/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/sv_SE/docs/user-guide/tiramisu/finalizing-setup.md b/translations/sv_SE/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/sv_SE/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/sv_SE/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/sv_SE/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/sv_SE/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/sv_SE/docs/user-guide/tiramisu/nand-backup.md b/translations/sv_SE/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/sv_SE/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/sv_SE/docs/user-guide/tiramisu/sd-preparation.md b/translations/sv_SE/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/sv_SE/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/sv_SE/docs/user-guide/tiramisu/sidebar.md b/translations/sv_SE/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/sv_SE/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/sv_SE/docs/user-guide/vwii/browser-exploit.md b/translations/sv_SE/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/sv_SE/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/sv_SE/docs/user-guide/vwii/finalizing-setup.md b/translations/sv_SE/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/sv_SE/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/sv_SE/docs/user-guide/vwii/installing-cioses.md b/translations/sv_SE/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/sv_SE/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/sv_SE/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/sv_SE/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/sv_SE/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/sv_SE/docs/user-guide/vwii/nand-backup.md b/translations/sv_SE/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/sv_SE/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/sv_SE/docs/user-guide/vwii/patching-ios80.md b/translations/sv_SE/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/sv_SE/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/sv_SE/docs/user-guide/vwii/sd-preparation.md b/translations/sv_SE/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/sv_SE/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/sv_SE/docs/user-guide/vwii/sidebar.md b/translations/sv_SE/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/sv_SE/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/sv_SE/docs/user-guide/vwii/vwii-modding.md b/translations/sv_SE/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/sv_SE/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/sv_SE/docs/vwii/vwii-modding.md b/translations/sv_SE/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/sv_SE/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/th_TH/docs/extras/about.md b/translations/th_TH/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/th_TH/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/th_TH/docs/extras/block-updates.md b/translations/th_TH/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/th_TH/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/th_TH/docs/extras/configurable-payload.md b/translations/th_TH/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/th_TH/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/th_TH/docs/extras/donations.md b/translations/th_TH/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/th_TH/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/th_TH/docs/extras/dump-games.md b/translations/th_TH/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/th_TH/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/th_TH/docs/extras/dump-wii-games.md b/translations/th_TH/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/th_TH/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/th_TH/docs/extras/faq.md b/translations/th_TH/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/th_TH/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/th_TH/docs/extras/find-wiiu-ip-address.md b/translations/th_TH/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/th_TH/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/th_TH/docs/extras/unblock-updates.md b/translations/th_TH/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/th_TH/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/th_TH/docs/extras/uninstall-cbhc.md b/translations/th_TH/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/th_TH/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/th_TH/docs/extras/uninstall-indexiine.md b/translations/th_TH/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/th_TH/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/th_TH/docs/extras/uninstall-payloadloader.md b/translations/th_TH/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/th_TH/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/th_TH/docs/privacy/privacy-policy.md b/translations/th_TH/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/th_TH/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/th_TH/docs/sidebar.md b/translations/th_TH/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/th_TH/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/th_TH/docs/troubleshooting/common-issues-fixes.md b/translations/th_TH/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/th_TH/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/th_TH/docs/troubleshooting/fix-errcode-112-1037.md b/translations/th_TH/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/th_TH/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/th_TH/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/th_TH/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/th_TH/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/th_TH/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/th_TH/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/th_TH/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/th_TH/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/th_TH/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/th_TH/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/th_TH/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/th_TH/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/th_TH/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/th_TH/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/cbhc/nand-backup.md b/translations/th_TH/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/th_TH/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/th_TH/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/th_TH/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/th_TH/docs/user-guide/archive/cbhc/sidebar.md b/translations/th_TH/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/th_TH/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/cfw-choice.md b/translations/th_TH/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/th_TH/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/th_TH/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/th_TH/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/th_TH/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/th_TH/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/th_TH/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/th_TH/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/th_TH/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/th_TH/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/th_TH/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/th_TH/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/haxchi/nand-backup.md b/translations/th_TH/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/th_TH/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/th_TH/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/th_TH/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/th_TH/docs/user-guide/archive/haxchi/sidebar.md b/translations/th_TH/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/th_TH/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/th_TH/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/th_TH/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/th_TH/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/th_TH/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/th_TH/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/th_TH/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/th_TH/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/mocha/sidebar.md b/translations/th_TH/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/th_TH/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/sidebar.md b/translations/th_TH/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/th_TH/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/th_TH/docs/user-guide/archive/tiramisu/autoboot.md b/translations/th_TH/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/th_TH/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/th_TH/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/th_TH/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/th_TH/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/th_TH/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/th_TH/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/th_TH/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/th_TH/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/th_TH/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/th_TH/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/th_TH/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/th_TH/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/th_TH/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/th_TH/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/th_TH/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/th_TH/docs/user-guide/archive/tiramisu/sidebar.md b/translations/th_TH/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/th_TH/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/th_TH/docs/user-guide/archive/vwii/browser-exploit.md b/translations/th_TH/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/th_TH/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/th_TH/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/th_TH/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/th_TH/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/th_TH/docs/user-guide/archive/vwii/installing-cioses.md b/translations/th_TH/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/th_TH/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/th_TH/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/th_TH/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/th_TH/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/th_TH/docs/user-guide/archive/vwii/nand-backup.md b/translations/th_TH/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/th_TH/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/th_TH/docs/user-guide/archive/vwii/patching-ios80.md b/translations/th_TH/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/th_TH/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/th_TH/docs/user-guide/archive/vwii/sd-preparation.md b/translations/th_TH/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/th_TH/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/th_TH/docs/user-guide/archive/vwii/sidebar.md b/translations/th_TH/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/th_TH/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/th_TH/docs/user-guide/aroma/autoboot.md b/translations/th_TH/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/th_TH/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/th_TH/docs/user-guide/aroma/browser-exploit.md b/translations/th_TH/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/th_TH/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/th_TH/docs/user-guide/aroma/finalizing-setup.md b/translations/th_TH/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/th_TH/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/th_TH/docs/user-guide/aroma/getting-started.md b/translations/th_TH/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/th_TH/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/th_TH/docs/user-guide/aroma/installing-payloadloader.md b/translations/th_TH/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/th_TH/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/th_TH/docs/user-guide/aroma/nand-backup.md b/translations/th_TH/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/th_TH/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/th_TH/docs/user-guide/aroma/sd-preparation.md b/translations/th_TH/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/th_TH/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/th_TH/docs/user-guide/aroma/sidebar.md b/translations/th_TH/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/th_TH/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/th_TH/docs/user-guide/cbhc/browser-exploit.md b/translations/th_TH/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/th_TH/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/cbhc/ds-vc-choice.md b/translations/th_TH/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/th_TH/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/th_TH/docs/user-guide/cbhc/installing-hblc.md b/translations/th_TH/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/th_TH/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/cbhc/launching-cfw.md b/translations/th_TH/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/th_TH/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/cbhc/nand-backup.md b/translations/th_TH/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/th_TH/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/cbhc/sd-preparation.md b/translations/th_TH/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/th_TH/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/th_TH/docs/user-guide/cbhc/sidebar.md b/translations/th_TH/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/th_TH/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/cfw-choice.md b/translations/th_TH/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/th_TH/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/th_TH/docs/user-guide/haxchi/browser-exploit.md b/translations/th_TH/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/th_TH/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/haxchi/ds-vc-choice.md b/translations/th_TH/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/th_TH/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/th_TH/docs/user-guide/haxchi/installing-hblc.md b/translations/th_TH/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/th_TH/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/haxchi/launching-cfw.md b/translations/th_TH/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/th_TH/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/haxchi/nand-backup.md b/translations/th_TH/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/th_TH/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/haxchi/sd-preparation.md b/translations/th_TH/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/th_TH/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/th_TH/docs/user-guide/haxchi/sidebar.md b/translations/th_TH/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/th_TH/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/introduction.md b/translations/th_TH/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/th_TH/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/th_TH/docs/user-guide/mocha/entrypoint-choice.md b/translations/th_TH/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/th_TH/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/th_TH/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/th_TH/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/th_TH/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/th_TH/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/th_TH/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/th_TH/docs/user-guide/mocha/indexiine/sidebar.md b/translations/th_TH/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/th_TH/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/th_TH/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/th_TH/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/th_TH/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/th_TH/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/th_TH/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/mocha/sidebar.md b/translations/th_TH/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/th_TH/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/tiramisu/autoboot.md b/translations/th_TH/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/th_TH/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/th_TH/docs/user-guide/tiramisu/browser-exploit.md b/translations/th_TH/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/th_TH/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/th_TH/docs/user-guide/tiramisu/finalizing-setup.md b/translations/th_TH/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/th_TH/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/th_TH/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/th_TH/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/th_TH/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/th_TH/docs/user-guide/tiramisu/nand-backup.md b/translations/th_TH/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/th_TH/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/th_TH/docs/user-guide/tiramisu/sd-preparation.md b/translations/th_TH/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/th_TH/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/th_TH/docs/user-guide/tiramisu/sidebar.md b/translations/th_TH/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/th_TH/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/th_TH/docs/user-guide/vwii/browser-exploit.md b/translations/th_TH/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/th_TH/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/th_TH/docs/user-guide/vwii/finalizing-setup.md b/translations/th_TH/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/th_TH/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/th_TH/docs/user-guide/vwii/installing-cioses.md b/translations/th_TH/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/th_TH/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/th_TH/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/th_TH/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/th_TH/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/th_TH/docs/user-guide/vwii/nand-backup.md b/translations/th_TH/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/th_TH/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/th_TH/docs/user-guide/vwii/patching-ios80.md b/translations/th_TH/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/th_TH/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/th_TH/docs/user-guide/vwii/sd-preparation.md b/translations/th_TH/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/th_TH/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/th_TH/docs/user-guide/vwii/sidebar.md b/translations/th_TH/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/th_TH/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/th_TH/docs/user-guide/vwii/vwii-modding.md b/translations/th_TH/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/th_TH/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/th_TH/docs/vwii/vwii-modding.md b/translations/th_TH/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/th_TH/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/tr_TR/docs/extras/about.md b/translations/tr_TR/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/tr_TR/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/tr_TR/docs/extras/block-updates.md b/translations/tr_TR/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/tr_TR/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/tr_TR/docs/extras/configurable-payload.md b/translations/tr_TR/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/tr_TR/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/tr_TR/docs/extras/donations.md b/translations/tr_TR/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/tr_TR/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/tr_TR/docs/extras/dump-games.md b/translations/tr_TR/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/tr_TR/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/tr_TR/docs/extras/dump-wii-games.md b/translations/tr_TR/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/tr_TR/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/tr_TR/docs/extras/faq.md b/translations/tr_TR/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/tr_TR/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/tr_TR/docs/extras/find-wiiu-ip-address.md b/translations/tr_TR/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/tr_TR/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/tr_TR/docs/extras/unblock-updates.md b/translations/tr_TR/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/tr_TR/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/tr_TR/docs/extras/uninstall-cbhc.md b/translations/tr_TR/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/tr_TR/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/tr_TR/docs/extras/uninstall-indexiine.md b/translations/tr_TR/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/tr_TR/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/tr_TR/docs/extras/uninstall-payloadloader.md b/translations/tr_TR/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/tr_TR/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/tr_TR/docs/privacy/privacy-policy.md b/translations/tr_TR/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/tr_TR/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/tr_TR/docs/sidebar.md b/translations/tr_TR/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/tr_TR/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/tr_TR/docs/troubleshooting/common-issues-fixes.md b/translations/tr_TR/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/tr_TR/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/tr_TR/docs/troubleshooting/fix-errcode-112-1037.md b/translations/tr_TR/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/tr_TR/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/tr_TR/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/tr_TR/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/tr_TR/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/tr_TR/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/tr_TR/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/tr_TR/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/tr_TR/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/tr_TR/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/tr_TR/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/cbhc/nand-backup.md b/translations/tr_TR/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/tr_TR/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/tr_TR/docs/user-guide/archive/cbhc/sidebar.md b/translations/tr_TR/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/cfw-choice.md b/translations/tr_TR/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/tr_TR/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/tr_TR/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/tr_TR/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/tr_TR/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/tr_TR/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/tr_TR/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/haxchi/nand-backup.md b/translations/tr_TR/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/tr_TR/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/tr_TR/docs/user-guide/archive/haxchi/sidebar.md b/translations/tr_TR/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/tr_TR/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/mocha/sidebar.md b/translations/tr_TR/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/sidebar.md b/translations/tr_TR/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/tr_TR/docs/user-guide/archive/tiramisu/autoboot.md b/translations/tr_TR/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/tr_TR/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/tr_TR/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/tr_TR/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/tr_TR/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/tr_TR/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/tr_TR/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/tr_TR/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/tr_TR/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/tr_TR/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/tr_TR/docs/user-guide/archive/tiramisu/sidebar.md b/translations/tr_TR/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/tr_TR/docs/user-guide/archive/vwii/browser-exploit.md b/translations/tr_TR/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/tr_TR/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/tr_TR/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/tr_TR/docs/user-guide/archive/vwii/installing-cioses.md b/translations/tr_TR/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/tr_TR/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/tr_TR/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/tr_TR/docs/user-guide/archive/vwii/nand-backup.md b/translations/tr_TR/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/tr_TR/docs/user-guide/archive/vwii/patching-ios80.md b/translations/tr_TR/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/tr_TR/docs/user-guide/archive/vwii/sd-preparation.md b/translations/tr_TR/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/tr_TR/docs/user-guide/archive/vwii/sidebar.md b/translations/tr_TR/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/tr_TR/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/tr_TR/docs/user-guide/aroma/autoboot.md b/translations/tr_TR/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/tr_TR/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/tr_TR/docs/user-guide/aroma/browser-exploit.md b/translations/tr_TR/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/tr_TR/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/tr_TR/docs/user-guide/aroma/finalizing-setup.md b/translations/tr_TR/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/tr_TR/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/tr_TR/docs/user-guide/aroma/getting-started.md b/translations/tr_TR/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/tr_TR/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/tr_TR/docs/user-guide/aroma/installing-payloadloader.md b/translations/tr_TR/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/tr_TR/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/tr_TR/docs/user-guide/aroma/nand-backup.md b/translations/tr_TR/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/tr_TR/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/tr_TR/docs/user-guide/aroma/sd-preparation.md b/translations/tr_TR/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/tr_TR/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/tr_TR/docs/user-guide/aroma/sidebar.md b/translations/tr_TR/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/tr_TR/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/tr_TR/docs/user-guide/cbhc/browser-exploit.md b/translations/tr_TR/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/tr_TR/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/cbhc/ds-vc-choice.md b/translations/tr_TR/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/tr_TR/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/tr_TR/docs/user-guide/cbhc/installing-hblc.md b/translations/tr_TR/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/tr_TR/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/cbhc/launching-cfw.md b/translations/tr_TR/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/tr_TR/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/cbhc/nand-backup.md b/translations/tr_TR/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/tr_TR/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/cbhc/sd-preparation.md b/translations/tr_TR/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/tr_TR/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/tr_TR/docs/user-guide/cbhc/sidebar.md b/translations/tr_TR/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/tr_TR/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/cfw-choice.md b/translations/tr_TR/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/tr_TR/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/tr_TR/docs/user-guide/haxchi/browser-exploit.md b/translations/tr_TR/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/tr_TR/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/haxchi/ds-vc-choice.md b/translations/tr_TR/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/tr_TR/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/tr_TR/docs/user-guide/haxchi/installing-hblc.md b/translations/tr_TR/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/tr_TR/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/haxchi/launching-cfw.md b/translations/tr_TR/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/tr_TR/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/haxchi/nand-backup.md b/translations/tr_TR/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/tr_TR/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/haxchi/sd-preparation.md b/translations/tr_TR/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/tr_TR/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/tr_TR/docs/user-guide/haxchi/sidebar.md b/translations/tr_TR/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/tr_TR/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/introduction.md b/translations/tr_TR/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/tr_TR/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/tr_TR/docs/user-guide/mocha/entrypoint-choice.md b/translations/tr_TR/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/tr_TR/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/tr_TR/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/tr_TR/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/tr_TR/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/tr_TR/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/tr_TR/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/tr_TR/docs/user-guide/mocha/indexiine/sidebar.md b/translations/tr_TR/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/tr_TR/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/tr_TR/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/tr_TR/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/tr_TR/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/tr_TR/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/tr_TR/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/mocha/sidebar.md b/translations/tr_TR/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/tr_TR/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/tiramisu/autoboot.md b/translations/tr_TR/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/tr_TR/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/tr_TR/docs/user-guide/tiramisu/browser-exploit.md b/translations/tr_TR/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/tr_TR/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/tr_TR/docs/user-guide/tiramisu/finalizing-setup.md b/translations/tr_TR/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/tr_TR/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/tr_TR/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/tr_TR/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/tr_TR/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/tr_TR/docs/user-guide/tiramisu/nand-backup.md b/translations/tr_TR/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/tr_TR/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/tr_TR/docs/user-guide/tiramisu/sd-preparation.md b/translations/tr_TR/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/tr_TR/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/tr_TR/docs/user-guide/tiramisu/sidebar.md b/translations/tr_TR/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/tr_TR/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/tr_TR/docs/user-guide/vwii/browser-exploit.md b/translations/tr_TR/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/tr_TR/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/tr_TR/docs/user-guide/vwii/finalizing-setup.md b/translations/tr_TR/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/tr_TR/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/tr_TR/docs/user-guide/vwii/installing-cioses.md b/translations/tr_TR/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/tr_TR/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/tr_TR/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/tr_TR/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/tr_TR/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/tr_TR/docs/user-guide/vwii/nand-backup.md b/translations/tr_TR/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/tr_TR/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/tr_TR/docs/user-guide/vwii/patching-ios80.md b/translations/tr_TR/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/tr_TR/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/tr_TR/docs/user-guide/vwii/sd-preparation.md b/translations/tr_TR/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/tr_TR/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/tr_TR/docs/user-guide/vwii/sidebar.md b/translations/tr_TR/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/tr_TR/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/tr_TR/docs/user-guide/vwii/vwii-modding.md b/translations/tr_TR/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/tr_TR/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/tr_TR/docs/vwii/vwii-modding.md b/translations/tr_TR/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/tr_TR/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/uk_UA/docs/extras/about.md b/translations/uk_UA/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/uk_UA/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/uk_UA/docs/extras/block-updates.md b/translations/uk_UA/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/uk_UA/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/uk_UA/docs/extras/configurable-payload.md b/translations/uk_UA/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/uk_UA/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/uk_UA/docs/extras/donations.md b/translations/uk_UA/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/uk_UA/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/uk_UA/docs/extras/dump-games.md b/translations/uk_UA/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/uk_UA/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/uk_UA/docs/extras/dump-wii-games.md b/translations/uk_UA/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/uk_UA/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/uk_UA/docs/extras/faq.md b/translations/uk_UA/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/uk_UA/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/uk_UA/docs/extras/find-wiiu-ip-address.md b/translations/uk_UA/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/uk_UA/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/uk_UA/docs/extras/unblock-updates.md b/translations/uk_UA/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/uk_UA/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/uk_UA/docs/extras/uninstall-cbhc.md b/translations/uk_UA/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/uk_UA/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/uk_UA/docs/extras/uninstall-indexiine.md b/translations/uk_UA/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/uk_UA/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/uk_UA/docs/extras/uninstall-payloadloader.md b/translations/uk_UA/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/uk_UA/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/uk_UA/docs/privacy/privacy-policy.md b/translations/uk_UA/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/uk_UA/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/uk_UA/docs/sidebar.md b/translations/uk_UA/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/uk_UA/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/uk_UA/docs/troubleshooting/common-issues-fixes.md b/translations/uk_UA/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/uk_UA/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/uk_UA/docs/troubleshooting/fix-errcode-112-1037.md b/translations/uk_UA/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/uk_UA/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/uk_UA/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/uk_UA/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/uk_UA/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/uk_UA/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/uk_UA/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/uk_UA/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/uk_UA/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/uk_UA/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/uk_UA/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/cbhc/nand-backup.md b/translations/uk_UA/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/uk_UA/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/uk_UA/docs/user-guide/archive/cbhc/sidebar.md b/translations/uk_UA/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/cfw-choice.md b/translations/uk_UA/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/uk_UA/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/uk_UA/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/uk_UA/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/uk_UA/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/uk_UA/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/uk_UA/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/haxchi/nand-backup.md b/translations/uk_UA/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/uk_UA/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/uk_UA/docs/user-guide/archive/haxchi/sidebar.md b/translations/uk_UA/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/uk_UA/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/mocha/sidebar.md b/translations/uk_UA/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/sidebar.md b/translations/uk_UA/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/uk_UA/docs/user-guide/archive/tiramisu/autoboot.md b/translations/uk_UA/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/uk_UA/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/uk_UA/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/uk_UA/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/uk_UA/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/uk_UA/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/uk_UA/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/uk_UA/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/uk_UA/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/uk_UA/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/uk_UA/docs/user-guide/archive/tiramisu/sidebar.md b/translations/uk_UA/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/uk_UA/docs/user-guide/archive/vwii/browser-exploit.md b/translations/uk_UA/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/uk_UA/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/uk_UA/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/uk_UA/docs/user-guide/archive/vwii/installing-cioses.md b/translations/uk_UA/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/uk_UA/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/uk_UA/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/uk_UA/docs/user-guide/archive/vwii/nand-backup.md b/translations/uk_UA/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/uk_UA/docs/user-guide/archive/vwii/patching-ios80.md b/translations/uk_UA/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/uk_UA/docs/user-guide/archive/vwii/sd-preparation.md b/translations/uk_UA/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/uk_UA/docs/user-guide/archive/vwii/sidebar.md b/translations/uk_UA/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/uk_UA/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/uk_UA/docs/user-guide/aroma/autoboot.md b/translations/uk_UA/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/uk_UA/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/uk_UA/docs/user-guide/aroma/browser-exploit.md b/translations/uk_UA/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/uk_UA/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/uk_UA/docs/user-guide/aroma/finalizing-setup.md b/translations/uk_UA/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/uk_UA/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/uk_UA/docs/user-guide/aroma/getting-started.md b/translations/uk_UA/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/uk_UA/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/uk_UA/docs/user-guide/aroma/installing-payloadloader.md b/translations/uk_UA/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/uk_UA/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/uk_UA/docs/user-guide/aroma/nand-backup.md b/translations/uk_UA/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/uk_UA/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/uk_UA/docs/user-guide/aroma/sd-preparation.md b/translations/uk_UA/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/uk_UA/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/uk_UA/docs/user-guide/aroma/sidebar.md b/translations/uk_UA/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/uk_UA/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/uk_UA/docs/user-guide/cbhc/browser-exploit.md b/translations/uk_UA/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/uk_UA/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/cbhc/ds-vc-choice.md b/translations/uk_UA/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/uk_UA/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/uk_UA/docs/user-guide/cbhc/installing-hblc.md b/translations/uk_UA/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/uk_UA/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/cbhc/launching-cfw.md b/translations/uk_UA/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/uk_UA/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/cbhc/nand-backup.md b/translations/uk_UA/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/uk_UA/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/cbhc/sd-preparation.md b/translations/uk_UA/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/uk_UA/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/uk_UA/docs/user-guide/cbhc/sidebar.md b/translations/uk_UA/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/uk_UA/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/cfw-choice.md b/translations/uk_UA/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/uk_UA/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/uk_UA/docs/user-guide/haxchi/browser-exploit.md b/translations/uk_UA/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/uk_UA/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/haxchi/ds-vc-choice.md b/translations/uk_UA/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/uk_UA/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/uk_UA/docs/user-guide/haxchi/installing-hblc.md b/translations/uk_UA/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/uk_UA/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/haxchi/launching-cfw.md b/translations/uk_UA/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/uk_UA/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/haxchi/nand-backup.md b/translations/uk_UA/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/uk_UA/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/haxchi/sd-preparation.md b/translations/uk_UA/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/uk_UA/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/uk_UA/docs/user-guide/haxchi/sidebar.md b/translations/uk_UA/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/uk_UA/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/introduction.md b/translations/uk_UA/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/uk_UA/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/uk_UA/docs/user-guide/mocha/entrypoint-choice.md b/translations/uk_UA/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/uk_UA/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/uk_UA/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/uk_UA/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/uk_UA/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/uk_UA/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/uk_UA/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/uk_UA/docs/user-guide/mocha/indexiine/sidebar.md b/translations/uk_UA/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/uk_UA/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/uk_UA/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/uk_UA/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/uk_UA/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/uk_UA/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/uk_UA/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/mocha/sidebar.md b/translations/uk_UA/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/uk_UA/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/tiramisu/autoboot.md b/translations/uk_UA/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/uk_UA/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/uk_UA/docs/user-guide/tiramisu/browser-exploit.md b/translations/uk_UA/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/uk_UA/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/uk_UA/docs/user-guide/tiramisu/finalizing-setup.md b/translations/uk_UA/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/uk_UA/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/uk_UA/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/uk_UA/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/uk_UA/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/uk_UA/docs/user-guide/tiramisu/nand-backup.md b/translations/uk_UA/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/uk_UA/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/uk_UA/docs/user-guide/tiramisu/sd-preparation.md b/translations/uk_UA/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/uk_UA/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/uk_UA/docs/user-guide/tiramisu/sidebar.md b/translations/uk_UA/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/uk_UA/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/uk_UA/docs/user-guide/vwii/browser-exploit.md b/translations/uk_UA/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/uk_UA/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/uk_UA/docs/user-guide/vwii/finalizing-setup.md b/translations/uk_UA/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/uk_UA/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/uk_UA/docs/user-guide/vwii/installing-cioses.md b/translations/uk_UA/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/uk_UA/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/uk_UA/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/uk_UA/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/uk_UA/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/uk_UA/docs/user-guide/vwii/nand-backup.md b/translations/uk_UA/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/uk_UA/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/uk_UA/docs/user-guide/vwii/patching-ios80.md b/translations/uk_UA/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/uk_UA/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/uk_UA/docs/user-guide/vwii/sd-preparation.md b/translations/uk_UA/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/uk_UA/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/uk_UA/docs/user-guide/vwii/sidebar.md b/translations/uk_UA/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/uk_UA/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/uk_UA/docs/user-guide/vwii/vwii-modding.md b/translations/uk_UA/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/uk_UA/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/uk_UA/docs/vwii/vwii-modding.md b/translations/uk_UA/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/uk_UA/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/vi_VN/docs/extras/about.md b/translations/vi_VN/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/vi_VN/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/vi_VN/docs/extras/block-updates.md b/translations/vi_VN/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/vi_VN/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/vi_VN/docs/extras/configurable-payload.md b/translations/vi_VN/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/vi_VN/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/vi_VN/docs/extras/donations.md b/translations/vi_VN/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/vi_VN/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/vi_VN/docs/extras/dump-games.md b/translations/vi_VN/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/vi_VN/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/vi_VN/docs/extras/dump-wii-games.md b/translations/vi_VN/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/vi_VN/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/vi_VN/docs/extras/faq.md b/translations/vi_VN/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/vi_VN/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/vi_VN/docs/extras/find-wiiu-ip-address.md b/translations/vi_VN/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/vi_VN/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/vi_VN/docs/extras/unblock-updates.md b/translations/vi_VN/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/vi_VN/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/vi_VN/docs/extras/uninstall-cbhc.md b/translations/vi_VN/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/vi_VN/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/vi_VN/docs/extras/uninstall-indexiine.md b/translations/vi_VN/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/vi_VN/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/vi_VN/docs/extras/uninstall-payloadloader.md b/translations/vi_VN/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/vi_VN/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/vi_VN/docs/privacy/privacy-policy.md b/translations/vi_VN/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/vi_VN/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/vi_VN/docs/sidebar.md b/translations/vi_VN/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/vi_VN/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/vi_VN/docs/troubleshooting/common-issues-fixes.md b/translations/vi_VN/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/vi_VN/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/vi_VN/docs/troubleshooting/fix-errcode-112-1037.md b/translations/vi_VN/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/vi_VN/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/vi_VN/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/vi_VN/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/vi_VN/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/vi_VN/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/vi_VN/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/vi_VN/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/vi_VN/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/vi_VN/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/vi_VN/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/cbhc/nand-backup.md b/translations/vi_VN/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/vi_VN/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/vi_VN/docs/user-guide/archive/cbhc/sidebar.md b/translations/vi_VN/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/cfw-choice.md b/translations/vi_VN/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/vi_VN/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/vi_VN/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/vi_VN/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/vi_VN/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/vi_VN/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/vi_VN/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/haxchi/nand-backup.md b/translations/vi_VN/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/vi_VN/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/vi_VN/docs/user-guide/archive/haxchi/sidebar.md b/translations/vi_VN/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/vi_VN/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/mocha/sidebar.md b/translations/vi_VN/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/sidebar.md b/translations/vi_VN/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/vi_VN/docs/user-guide/archive/tiramisu/autoboot.md b/translations/vi_VN/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/vi_VN/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/vi_VN/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/vi_VN/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/vi_VN/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/vi_VN/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/vi_VN/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/vi_VN/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/vi_VN/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/vi_VN/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/vi_VN/docs/user-guide/archive/tiramisu/sidebar.md b/translations/vi_VN/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/vi_VN/docs/user-guide/archive/vwii/browser-exploit.md b/translations/vi_VN/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/vi_VN/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/vi_VN/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/vi_VN/docs/user-guide/archive/vwii/installing-cioses.md b/translations/vi_VN/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/vi_VN/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/vi_VN/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/vi_VN/docs/user-guide/archive/vwii/nand-backup.md b/translations/vi_VN/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/vi_VN/docs/user-guide/archive/vwii/patching-ios80.md b/translations/vi_VN/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/vi_VN/docs/user-guide/archive/vwii/sd-preparation.md b/translations/vi_VN/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/vi_VN/docs/user-guide/archive/vwii/sidebar.md b/translations/vi_VN/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/vi_VN/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/vi_VN/docs/user-guide/aroma/autoboot.md b/translations/vi_VN/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/vi_VN/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/vi_VN/docs/user-guide/aroma/browser-exploit.md b/translations/vi_VN/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/vi_VN/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/vi_VN/docs/user-guide/aroma/finalizing-setup.md b/translations/vi_VN/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/vi_VN/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/vi_VN/docs/user-guide/aroma/getting-started.md b/translations/vi_VN/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/vi_VN/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/vi_VN/docs/user-guide/aroma/installing-payloadloader.md b/translations/vi_VN/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/vi_VN/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/vi_VN/docs/user-guide/aroma/nand-backup.md b/translations/vi_VN/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/vi_VN/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/vi_VN/docs/user-guide/aroma/sd-preparation.md b/translations/vi_VN/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/vi_VN/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/vi_VN/docs/user-guide/aroma/sidebar.md b/translations/vi_VN/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/vi_VN/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/vi_VN/docs/user-guide/cbhc/browser-exploit.md b/translations/vi_VN/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/vi_VN/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/cbhc/ds-vc-choice.md b/translations/vi_VN/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/vi_VN/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/vi_VN/docs/user-guide/cbhc/installing-hblc.md b/translations/vi_VN/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/vi_VN/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/cbhc/launching-cfw.md b/translations/vi_VN/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/vi_VN/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/cbhc/nand-backup.md b/translations/vi_VN/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/vi_VN/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/cbhc/sd-preparation.md b/translations/vi_VN/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/vi_VN/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/vi_VN/docs/user-guide/cbhc/sidebar.md b/translations/vi_VN/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/vi_VN/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/cfw-choice.md b/translations/vi_VN/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/vi_VN/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/vi_VN/docs/user-guide/haxchi/browser-exploit.md b/translations/vi_VN/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/vi_VN/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/haxchi/ds-vc-choice.md b/translations/vi_VN/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/vi_VN/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/vi_VN/docs/user-guide/haxchi/installing-hblc.md b/translations/vi_VN/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/vi_VN/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/haxchi/launching-cfw.md b/translations/vi_VN/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/vi_VN/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/haxchi/nand-backup.md b/translations/vi_VN/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/vi_VN/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/haxchi/sd-preparation.md b/translations/vi_VN/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/vi_VN/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/vi_VN/docs/user-guide/haxchi/sidebar.md b/translations/vi_VN/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/vi_VN/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/introduction.md b/translations/vi_VN/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/vi_VN/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/vi_VN/docs/user-guide/mocha/entrypoint-choice.md b/translations/vi_VN/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/vi_VN/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/vi_VN/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/vi_VN/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/vi_VN/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/vi_VN/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/vi_VN/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/vi_VN/docs/user-guide/mocha/indexiine/sidebar.md b/translations/vi_VN/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/vi_VN/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/vi_VN/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/vi_VN/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/vi_VN/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/vi_VN/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/vi_VN/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/mocha/sidebar.md b/translations/vi_VN/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/vi_VN/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/tiramisu/autoboot.md b/translations/vi_VN/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/vi_VN/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/vi_VN/docs/user-guide/tiramisu/browser-exploit.md b/translations/vi_VN/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/vi_VN/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/vi_VN/docs/user-guide/tiramisu/finalizing-setup.md b/translations/vi_VN/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/vi_VN/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/vi_VN/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/vi_VN/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/vi_VN/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/vi_VN/docs/user-guide/tiramisu/nand-backup.md b/translations/vi_VN/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/vi_VN/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/vi_VN/docs/user-guide/tiramisu/sd-preparation.md b/translations/vi_VN/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/vi_VN/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/vi_VN/docs/user-guide/tiramisu/sidebar.md b/translations/vi_VN/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/vi_VN/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/vi_VN/docs/user-guide/vwii/browser-exploit.md b/translations/vi_VN/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/vi_VN/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/vi_VN/docs/user-guide/vwii/finalizing-setup.md b/translations/vi_VN/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/vi_VN/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/vi_VN/docs/user-guide/vwii/installing-cioses.md b/translations/vi_VN/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/vi_VN/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/vi_VN/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/vi_VN/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/vi_VN/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/vi_VN/docs/user-guide/vwii/nand-backup.md b/translations/vi_VN/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/vi_VN/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/vi_VN/docs/user-guide/vwii/patching-ios80.md b/translations/vi_VN/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/vi_VN/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/vi_VN/docs/user-guide/vwii/sd-preparation.md b/translations/vi_VN/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/vi_VN/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/vi_VN/docs/user-guide/vwii/sidebar.md b/translations/vi_VN/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/vi_VN/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/vi_VN/docs/user-guide/vwii/vwii-modding.md b/translations/vi_VN/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/vi_VN/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/vi_VN/docs/vwii/vwii-modding.md b/translations/vi_VN/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/vi_VN/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/zh_CN/docs/extras/about.md b/translations/zh_CN/docs/extras/about.md deleted file mode 100644 index 16bd1d84ae7..00000000000 --- a/translations/zh_CN/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# 关于本手册 ---- -本手册是由 [Nintendo Homebrew Discord 服务器](https://discord.gg/C29hYvh)的成员所编写的。 - -> **制作人员** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> 感谢[所有其他](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors)在 GitHub 中的手册贡献力量的人们。 - -?> [你可以在 GitHub 中找到本手册](https://github.com/hacks-guide/Guide-WiiU),它根据 [ISC 许可证](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md)进行授权。 - -
- Nintendo Homebrew -
- -> -> **开发者/工具名单** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/zh_CN/docs/extras/block-updates.md b/translations/zh_CN/docs/extras/block-updates.md deleted file mode 100644 index 532224a3732..00000000000 --- a/translations/zh_CN/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# 阻止更新 ---- -目前所有已知的 Wii U 漏洞(例如 Nintendo Switch RCM 漏洞)都可以被通过更新系统失效。 虽然 Wii U 不再会得到任天堂官方的技术支持,但任天堂仍然可以为其发布新的系统更新。 Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### 简介 {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/zh_CN/docs/extras/configurable-payload.md b/translations/zh_CN/docs/extras/configurable-payload.md deleted file mode 100644 index 712bcfd8241..00000000000 --- a/translations/zh_CN/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# 可配置的 Payload ---- -像 Haxchi 一样,这个 payload 是可以配置的。 这可能对使用 Mocha 的用户非常有用,因为它节省了一点从 Homebrew Launcher 启动 Mocha 的时间。 - -### 你需要准备些啥? {docsify-ignore} - -- 可配置的 payload。 -- 最新版 [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix)。 - -### 步骤 {docsify-ignore} - -1. 解压 `homebrew_launcher_channel.v2.1_fix.zip` 文件到 SD 卡根目录下的 `install` 文件夹。 -1. 将 SD 卡插入 Wii U,然后启动 [Homebrew Launcher](mocha/online-exploit/browser-exploit)。 -1. 移动 Homebrew Launcher 至 WUP Installer GX2 程序,然后打开它。 -1. 选择 `Homebrew Launcher Channel`。 按下 `Install`,并选中 NAND 为安装目标。 这会将 Homebrew Launcher Channel 安装到 Wii U 主菜单中。 -1. 一旦进程完成后,按下 Home 键来回到 Wii U 主菜单中。 -1. 这时 channel 不会自动启动,因为它与你 SD 卡上使用的版本冲突。 重启 Wii U。 -1. 从 Wii U 上拔出 SD 卡,然后插入电脑。 -1. 解压 `Configurable_Payload.zip` 到你的 SD 卡中的根目录中。 如果弹出了需要覆盖文件的提示,请选择覆盖。 -1. 将 SD 卡插入 Wii U,然后启动 Wii U 并打开 Wii U 的浏览器,然后访问 `wiiuexploit.xyz` 网站。 -1. 点击 `Run Homebrew Launcher!`。 如果一切正常,系统将会自动回到 Wii U 主菜单。 Mocha 现在已被启用,且你可以使用你早前安装的 Homebrew Launcher Channel。 - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 diff --git a/translations/zh_CN/docs/extras/donations.md b/translations/zh_CN/docs/extras/donations.md deleted file mode 100644 index 607fb8c5499..00000000000 --- a/translations/zh_CN/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# 捐赠 {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/zh_CN/docs/extras/dump-games.md b/translations/zh_CN/docs/extras/dump-games.md deleted file mode 100644 index b16baf373c0..00000000000 --- a/translations/zh_CN/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# 导出 Wii U 光盘 ---- -导出你的光盘文件允许你安装游戏的副本到你主机的 NAND 或 USB 设备中,以便你可以在不用光盘的时候玩游戏。 - -?> 导出和安装游戏需要你先完成 Homebrew 的设置,所以你需要先完成关于安装自制固件的主要教程,然后再来关注下面的步骤。 - -!> 分享本教程导出的文件是 **非法的**。 -如果你想要使用这个教程导出游戏并分享出去,请不要这么做。 - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> 我们不建议将游戏安装到系统内存中(NAND),因为主机的内存容量为 8 GB 或 32 GB,如果你想安装好几个游戏,剩余空间会很快用完。 - -?> 如果你需要将游戏安装到 USB 设备,我们建议你使用 HDD 而不要用闪存驱动器(U盘),闪存驱动器没有对读写文件的特别优化,导致它们会很快就无法正常使用。 如果你的 HDD 没有外接电源,则你需要一根硬盘 Y 形线将硬盘连接至 Wii U 上的两个 USB 接口上。 - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### 你需要准备些啥? {docsify-ignore} - -- 你的 SD 卡需要保存游戏的导出文件的足够的空间。 -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### 步骤 {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. 打开你的 Wii U。 -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/zh_CN/docs/extras/dump-wii-games.md b/translations/zh_CN/docs/extras/dump-wii-games.md deleted file mode 100644 index ad0b206470f..00000000000 --- a/translations/zh_CN/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# 导出 Wii 光盘 ---- -导出你的光盘允许你:在 Wii 模拟器(即 Dolphin)中游玩它们,或使用 USB/SD 卡加载器(如Wiiflow)玩它们,亦或制作一个 VC (Virtual Console)模拟游戏并安装在 USB 设备或 NAND 中,允许它从 Wii U 菜单中启动。 - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> 分享本教程导出的文件是 **非法的**。 -如果你想要使用这个教程导出游戏并分享出去,请不要这么做。 - -### 你需要准备些啥? {docsify-ignore} - -1. 最新版 [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip)。 -1. [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) 文件。 - -### 步骤 {docsify-ignore} - -1. 将你的 Wii U 的 SD 卡插入你的电脑。 -1. 从 `CleanRip-v2.1.1.zip` 中复制 `apps` 文件夹到你的 SD 卡根目录中。 -1. 复制 `wii.dat` 到你的 SD 卡根目录。 -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 - -### 导出光盘 - -1. 打开你的 Wii U,然后选中 Wii 菜单图标来启动至 vWii。 -1. 启动 Homebrew Channel。 -1. 启动 CleanRip。 -1. 阅读免责声明,然后按下 A 键。 -1. 选择 Yes 来启用校验计算。 -1. 选择导出过程中你想使用的 USB 设备或 SD 卡。 - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. 按 A 继续。 -1. 如果屏幕上提示是否从 redump.org 上下载 DAT 文件,选择 No。 -1. 插入你的光盘,然后按下 A 键。 -1. 在[这个页面](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games)中可以检查你的光盘是否是双层的。 -1. 设定以下选项: - - Dual Layer: `Yes/No`(如果你的光盘是双层的,请选择 `Yes`) - - Chunk Size: `Max` - - New device per chunk: `No` -1. 如果你想要导出多个光盘,请选择 Yes 来保存你的设置。 反之,请选择 No。 - -?> 请等待一段时间。 导出过程可能要 30 分钟至 1 小时,这取决于你的 SD 卡速度。 - -### 合并拆分文件 - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. 它们需要被合并起来。 - -#### Windows {docsify-ignore} - -1. 将以 `.partX.iso` 结尾文件名的文件复制到你的电脑上。 -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. 将以 `.partX.iso` 结尾文件名的文件复制到你的电脑上。 -1. 打开一个终端窗口 -1. 使用 `cd ` 命令将路径移动至你的 `.partX.iso` 文件夹中。 -1. 输入以下命令:`cat *.part?.iso > game.iso` diff --git a/translations/zh_CN/docs/extras/faq.md b/translations/zh_CN/docs/extras/faq.md deleted file mode 100644 index bf05a00c7ca..00000000000 --- a/translations/zh_CN/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# 常见问题 {docsify-ignore-all} ---- - -### Homebrew 是否有风险? - -当前,破解 Wii U 不会使你被任天堂封禁,除非你在在线游戏中作弊或欺骗 eShop。 然而尤其是当你不信任程序的源代码的时候,你要对你下载并启动的 Homebrew 程序保持一定的警惕,因为 Homebrew 可以破坏系统! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### 当我解压一些文件时,某些叫做 “info.json” & “manifest.install” 的文件重复了,我对这些文件要咋整? - -你自己看着整吧,无论是把它们留在原处、删除它们或者替换它们为新的什么的等等都由你自己摆布。 Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/zh_CN/docs/extras/find-wiiu-ip-address.md b/translations/zh_CN/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 871df9ba7cd..00000000000 --- a/translations/zh_CN/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# 如何找到你的 Wii U 的 IP 地址 ---- -这是一个关于如何找到你的 Wii U 的 IP 地址的快速指南。 - -### 你需要准备点啥? - -1. 最新版 [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu)。 - - 解压 `ftpiiu.zip` 到你的 SD 卡根目录。 - -### 操作步骤 - -1. 启动 Homebrew Launcher。 -1. 启动 FTPiiU。 -1. 你的 Wii U 的 IP 地址将会出现在屏幕的底部。 -1. 如果要退出 FTPiiU,请按下 Home 键。 \ No newline at end of file diff --git a/translations/zh_CN/docs/extras/unblock-updates.md b/translations/zh_CN/docs/extras/unblock-updates.md deleted file mode 100644 index 47a27fa1077..00000000000 --- a/translations/zh_CN/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# 解除阻止更新 ---- -如果你需要进行系统更新,则你就需要做这个教程。 - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### 步骤 {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/zh_CN/docs/extras/uninstall-cbhc.md b/translations/zh_CN/docs/extras/uninstall-cbhc.md deleted file mode 100644 index cca06ba4b8d..00000000000 --- a/translations/zh_CN/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# 卸载 CBHC ---- -本页将指导你从你的 Wii U 卸载 CBHC。 - -### 步骤 {docsify-ignore} - -1. 启动Homebrew Launcher. -1. 启动 CBHC Installer。 -1. 选择你想要卸载的注入了 CBHC 的 DS VC 游戏,然后按下 `A` 键。 -1. 按下 `B` 键阅读警告。 -1. 看看重启 Wii U 是否不再重启进入 CBHC 中。 -1. 如果重启后没有自动启动或进入了菜单屏幕,你就可以进入系统设置里的数据管理中删除一个名叫 `DON'T TOUCH ME` 的程序了。 - -?> 如果你在删除 `DON'T TOUCH ME` 时收到弹出提示:“A system-memory error has occurred. Turn off the console, and then try again.”,那么请在重启系统后再次尝试删除此应用程序。 **请**确保你在删除那个应用程序之前做完了所有步骤。 \ No newline at end of file diff --git a/translations/zh_CN/docs/extras/uninstall-indexiine.md b/translations/zh_CN/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 319261a3301..00000000000 --- a/translations/zh_CN/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# 卸载 Indexiine ---- -本页将指导你从你的 Wii U 卸载 Indexiine。 - -### 步骤 {docsify-ignore} - -1. 启动 Homebrew Launcher。 -1. 启动 Indexiine Installer。 -1. 按下 B 键卸载 Indexiine。 -1. Wii U 在进入网页浏览器的时候应该不会自动进入到 Homebrew Launcher 了。 diff --git a/translations/zh_CN/docs/extras/uninstall-payloadloader.md b/translations/zh_CN/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index f6f80915995..00000000000 --- a/translations/zh_CN/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### 你需要准备些啥? {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/zh_CN/docs/privacy/privacy-policy.md b/translations/zh_CN/docs/privacy/privacy-policy.md deleted file mode 100644 index cc6b1f5413a..00000000000 --- a/translations/zh_CN/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# *隐私政策* {docsify-ignore-all} - -**此声明于 2020 年 1 月 18 日更新。** - - -感谢您选择加入了 Wii U Hacks Guide(“公司”或“我们的”),并成为我们社区中的一员。 我们会保护你的个人隐私和你的隐私权。 如果您对我们的隐私政策有任何的疑问,或对我们在个人信息处理的做法有任何的想法,请通过 nh.wiiuguide@gmail.com 联系我们。 - -当您浏览我们的网站 https://wiiu.hacks.guide 并使用我们的服务时,则代表您信任我们不使用你的个人信息。 我们会非常认真地对待你的隐私。 在这份隐私声明中描述了我们的隐私政策是如何的。 我们会尽力明确我们收集的信息、我们收集这些信息用来干什么和您与这些信息持有的权利。 所以我们希望你花点时间阅读这份声明,因为它很重要。 如果您不同意此隐私政策中的任何条款,请立即停止使用我们的网站和我们的服务。 - -这份隐私政策适用于我们在我们网站(例如 https://wiiu.hacks.guide)上收集的所有信息。(在以下内容中,我们将其称作“**站点**”)。 - -**请仔细阅读这份隐私政策。** - - -## 目录 - -[1. 我们是怎么收集信息的?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. 我们是否使用 Cookies 和其他追踪技术?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. 您的隐私权是什么?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. 加州居民有特定的隐私权吗?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. 我们会更新此政策吗?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. 您如何就此政策与我们联系?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. 我们是怎么收集信息的? :id=_1-what-information-do-we-collect - -***简言之:*** *我们不会收集任何个人信息。* - -我们不会收集任何形式的个人信息。 然而,我们的页面托管商 [GitHub Pages](https://pages.github.com/) 可能会收集您的个人信息。 关于更多信息,请查看 [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. 我们是否使用 Cookies 和其他追踪技术? :id=_2-do-we-use-cookies-and-other-tracking-technologies -***简言之:*** *我们不会使用 Cookies 和其他追踪技术来收集并存储您的个人信息。* - -我们不使用 Cookies 和其他类似的跟踪技术(例如 web beacons 和 pixels)来获取或保存信息。 - - -### 3. 您的隐私权是什么? :id=_3-what-are-your-privacy-rights - -***简言之:*** *在某些地区(如欧洲经济区)。您拥有更多的权利来获取并控制你的个人信息。 您可以随时审查、修改或终止您的帐户。* - -在某些地区(如欧洲经济区),根据地区适用的数据保护法,您享有某些权利。 这些权利包括:㈠请求查阅和获得个人资料副本的权利。㈡ 请求更正或删除。 ㈢ 限制处理您的个人信息。㈣ 酌情限制数据可移植性。 在某些情况下,您可能也有权反对处理您的个人信息。 若要提出此请求,请通过[联系人详细信息](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy)请求。 我们将根据适用的数据保护法律考虑并根据任何要求采取行动。 - -如果我们依靠您的同意来处理您的个人信息,则您有权随时撤回您的同意。 但请注意,这不会影响撤回前处理的合法性。 - -如果您是欧洲经济区的居民,且您认为我们侵犯了您的个人信息,则您有权向当地的数据保护监督机构提出申诉。 您可以在这里找到他们的联系方式:http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. 加州居民有特定的隐私权吗? :id=_4-do-california-residents-have-specific-privacy-rights - -***简言之:*** *是的,如果你是加利福尼亚州的居民,则您拥有访问您的个人信息的特定权利。* - -根据《加利福尼亚民法典》(California Civil Code)第1798.83节,允许加利福尼亚州的居民用户每年向我们获取有关我们在上一年度中出于直接营销目的而向第三方披露的个人信息的类别(如果有的话)以及所有第三方的名称及地址。 如果您是加利福尼亚居民且想要提出这样的请求。 请使用下面提供的联系信息向我们提交您的书面请求。 - -如果您未满 18 周岁且住在加利福尼亚州并在此网站有注册的账户,您有权移除在此网站中公开的不必要数据。 若要请求删除这些数据,请使用以下联系信息与我们联系。并带上您账户的相关电子邮件地址和您居住在加利福尼亚州的证明。 我们将确保数据不会在网站上公开显示, 但请注意,数据可能不会全部或全面地从我们的系统中删除。 - - -### 5. 我们会更新此政策吗? :id=_5-do-we-make-updates-to-this-policy - -***简言之:*** *是的,我们将视情况更新这些政策,并遵守相关法规。* - -我们可能会不时的更新此隐私政策。 更新后的版本将在页头标注“更新”日期,更新后的版本一旦可以查阅将立即生效。 如果我们对隐私政策作了重大修改,我们可以通过张贴这种更改的通知或直接向您发送通知来通知您。 我们鼓励您审查此隐私政策,以便经常了解我们是如何保护您的信息的。 - - -### 6. 您如何就此政策与我们联系? :id=_6-how-can-you-contact-us-about-this-policy - -如果您对此政策有任何的疑问,请发送电子邮件至 nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/zh_CN/docs/sidebar.md b/translations/zh_CN/docs/sidebar.md deleted file mode 100644 index 5bf5bba077d..00000000000 --- a/translations/zh_CN/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **用户手册** -- [介绍](introduction) -- [Aroma](aroma/getting-started) -- [vWii 修改](vwii/vwii-modding) -- **故障排查** -- [常见问题 & 修复](common-issues-fixes) -- [恢复一个 vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii 修改](archive/vwii/sd-preparation) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](donations) -- [关于我们](about) -- **隐私** -- [隐私政策](privacy-policy) diff --git a/translations/zh_CN/docs/troubleshooting/common-issues-fixes.md b/translations/zh_CN/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index d258c1d8f7a..00000000000 --- a/translations/zh_CN/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# 常见问题&修复{docsify-ignore-all} ---- -### Haxchi 常见错误 - - - **-3:** 未检测到 SD 卡。 重新插一下 SD 卡,然后再试一次。 请确保你的 SD 卡为 FAT32 格式。 如果问题仍然存在,请尝试吹吹卡槽(或尝试其他方法清理),因为可能有一些灰尘积在卡槽里头了。 - - - **-4:** SD 卡已被检测到,但是无法被挂载。 检查 SD 卡是否正在使用 MBR 引导,而非 GPT 引导。 另外,检查 SD 卡上是否有两个以上的分区,如果有请将它们合并为一个。 - - - **-5:** SD 卡上缺少文件。 检查你 SD 卡上的以下路径中是否存在此 Homebrew Launcher 的文件:/wiiu/apps/homebrew_launcher/homebrew_launcher.elf。 - -### 浏览器错误 - - - **FSGetMountSource failed:** 与上文的 -3 错误一样,意思就是没有检测到内存卡。 重新插一下 SD 卡,然后再试一次。 This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** SD 卡上缺少 payload 文件。 Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** SD 卡中缺失 `homebrew_launcher`。 请确认在 /wiiu/apps/homebrew_launcher 文件夹中有一个叫做 `homebrew_launcher.elf` 的文件。 - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### 数据管理说要删除一些不必要的数据,它什么意思? - -这里指的是没有安装完成而残留的文件。 请总是确认删除这些数据,因为它们本来就没有存在的必要。 如果它一直卡在删除数据的进程中,那么你可以选择自己手动删除这些数据。 -使用 FTPiiU 然后浏览至 `/storage_mlc/usr/import` 然后删除这个文件夹中任何存在的文件。 这是未完成安装的东西存放的地方。 如果安装到 USB 设备中,则应该是 `/storage_usb/usr/import` 文件夹。 -`import` 文件夹里头理应始终都没有东西。 - -### 我的 HDD 不工作或它发出了一些很奇怪的打击声,我要怎么办? - -出现这个情况是因为 Wii U 的某个 USB 接口没有给出足够的功率来驱动硬盘。 - -你可以使用带有供电的 HDD,或者使用一根 Y 型硬盘线将硬盘连接至 Wii U 的两个 USB 接口来解决这个问题。 - -如果你的 HDD 在工作了一段时间后在某些(或所有)游戏上抛锚了,这和上面说的是同个问题,并可以用同样的方法解决。 - -### 当我解压一些文件时,某些叫做 “info.json” & “manifest.install” 的文件重复了,我对这些文件要咋整? - -你自己看着整吧,无论是把它们留在原处、删除它们或者替换它们为新的什么的等等都由你自己摆布。 也就是说,这些东西它有没有都无伤大雅。 - -### 我的主机突然掉线了,而且我有一块 HDD 放在主机的顶上,怎么办啊? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/zh_CN/docs/troubleshooting/fix-errcode-112-1037.md b/translations/zh_CN/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index 2715e5a1549..00000000000 --- a/translations/zh_CN/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# 如何修复错误代码 112-1037 ---- -此页面将会教你如何修复错误代码 112-1037。 - -### 你需要准备些啥? {docsify-ignore} - -- 已安装好[破解](introduction)。 -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(右键单击 -> 保存链接为... -> 点击保存)。** -- 最新版 [Python](https://www.python.org/downloads/)。 - -### 步骤 {docsify-ignore} - -1. 在你的电脑上安装好 Python。 - -### 修复错误代码 - - - -#### **Windows** - -### Windows - -1. 打开你的 Wii U。 -1. 启动 Homebrew Launcher 然后启动 Mocha。 -1. 返回 Wii U 主菜单。 -1. 打开一个命令提示符窗口。 -1. 使用以下命令移动到 wupclient.py 的目录下: `cd `。 - - 例子:cd C:\Users\<用户名>\Downloads。 -1. 使用以下命令:`py -3 -i wupclient.py`。 -1. 输入你的 Wii U 的 IP 地址。 - - 你不知道? 请读[这个](find-wiiu-ip-address)。 -1. 请使用对应你主机区域的命令: - - 日版:w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644)。 - - 美版:w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644)。 - - 欧版:w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644)。 -1. 如果输入正确,你应该会看到命令行输出以下内容: `chmod returned 0x0`。 -1. 这个错误代码现在应该没了。 - -#### **macOS & Linux** - -### macOS & Linux - -1. 打开你的 Wii U。 -1. 启动 Homebrew Launcher 然后启动 Mocha。 -1. 返回 Wii U 主菜单。 -1. 打开终端窗口。 -1. 使用以下命令移动到 wupclient.py 的目录下: `cd `。 - - 在 macOS 上,下载的文件一般都在 /Users/<用户名>/Downloads目录下。 - - 在 Linux 上,下载的文件一般都在 /home/<用户名>/Downloads目录下。 -1. 使用以下命令:`python3 -i wupclient.py`。 -1. 输入你的 Wii U 的 IP 地址。 - - 你不知道? 请读[这个](find-wiiu-ip-address)。 -1. 请使用对应你主机区域的命令: - - 日版:w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644)。 - - 美版:w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644)。 - - 欧版:w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644)。 -1. 如果输入正确,你应该会看到命令行输出以下内容: `chmod returned 0x0`。 -1. 这个错误代码现在应该没了。 - - \ No newline at end of file diff --git a/translations/zh_CN/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/zh_CN/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index 158abd97608..00000000000 --- a/translations/zh_CN/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# 恢复一个 vWii IOS/Channel ---- -此页面将教你恢复因任何原因而被破坏或被删除的 vWii 上的一个 IOS 或 Channel。 - -!> 小心点,这东西可能在你大意的时候会破坏你 vWii 的 NAND! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> 如果你正在阻止系统更新,请[关闭阻止更新](unblock-updates)。 - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### 你需要准备些啥? {docsify-ignore} - -- Wii U 的[破解](introduction)正常运作。 -- 最新版 [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases)。 - -### 步骤 {docsify-ignore} - -1. 复制 `decaffeinator.zip` 里的文件到你的 SD 卡根目录。 -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 -1. 将 Wii U 开机,然后启动你选择的 CFW(Mocha、Haxchi 或 CBHC)。 -1. 启动 Homebrew Launcher。 -1. 启动 vWii Decaffeinator。 - -### 恢复过程 - -你将有几种不同的选择。 如果你知道你要恢复什么东西,建议先尝试通过 `Advanced options` 菜单进行恢复。如果不确定,请使用 `Light mode`。 如果那两个方法都没有解决这个问题,则你应该使用 `Aggressive mode`。 - - - -#### **Advanced options** - -### Advanced options - -?> 此模式将清空特定的 IOS 和 Channel 来重新安装它们。 其他数据(包括 cIOS 的)将会保存。 - -
-点击此处显示可以通过此方法恢复的内容。 - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. 在菜单中选择 `Advanced options`。 -1. 使用十字键来切换至你想恢复的内容。 -1. 按下 Start 键来开始恢复进程。 -1. 当应用程序完成后,请允许程序启动系统设置。 -1. [升级系统](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update)来完成恢复进程。 - -?> 你现在可以重新打开[阻止更新](block-updates)。 - -#### **Light mode** - -### Light mode - -?> 这种方法将会清除系统菜单、Wii 留言板保存数据、IOS和其他的系统程序以重新安装它们的干净版本。 请注意这会移除所有的 cIOS,并且你必须重新安装它们。 将保存所有其他数据。 - -1. 在菜单中选择 `Light mode`。 -1. 按下 Start 键来开始恢复进程。 -1. 当应用程序完成后,请允许程序启动系统设置。 -1. [升级系统](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update)来完成恢复进程。 - -?> 你现在可以重新打开[阻止更新](block-updates)。 - -> 如果你在使用完 vWii Decaffeinator 后启动系统时收到了 160-0101 错误代码,请弹出你插入的光盘并拔出所有的外接设备,然后重启系统。 - -#### **Aggressive mode** - -### Aggressive mode - -!> 此模式将会清空 **所有** 内容来重新安装默认的 IOS 和 Channel。 请注意,这会清除所有的clOS、保存的数据和 Channel,然后 vWii NAND 会被还原至其出厂的模式! - -1. 在菜单中选择 `Aggressive mode`。 -1. 完整阅读警告。 如果你想要继续,请按下 Start 来开始此恢复过程。 -1. 当应用程序完成后,请允许程序启动系统设置。 -1. [升级系统](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update)来完成恢复进程。 - -?> 你现在可以重新打开[阻止更新](block-updates)。 - -> 如果你在使用完 vWii Decaffeinator 后启动系统时收到了 160-0101 错误代码,请弹出你插入的光盘并拔出所有的外接设备,然后重启系统。 - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/zh_CN/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/zh_CN/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index 5d189cb085f..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## 浏览器漏洞 {docsify-ignore} - -如要安装 CFW,我们首先需要通过浏览器漏洞来启动 Homebrew Launcher。 请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 步骤 {docsify-ignore} - -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 -1. 启动 Wii U 的浏览器,然后访问 `wiiuexploit.xyz` 网站。 -1. 点击 `Run Homebrew Launcher!`。 然后你的主机应该就启动到 Homebrew Launcher 了。 - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/zh_CN/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 134b86fb774..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## 选择你要用的 DS VC 游戏 - -你首先需要决定你想用的 DS VC(Virtual Console)游戏,然后买下它。 -你选择注入进 Haxchi/CBHC 的游戏在直到卸载 Haxchi/CBHC 并从 eShop 重新下载之前将无法游玩。 - -### 兼容的 DS VC 游戏 - -?> 如果你是欧版主机,则你的主机中可能自带了 Dr. Kawashima's Brain Training: How Old is Your Brain? 免费游戏。 [进入 eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u),然后检查你是否已拥有该游戏。 - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/zh_CN/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/zh_CN/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index 7eed514cd09..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## 安装 Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### 步骤 {docsify-ignore} - -1. 打开你的主机。 -1. 在屏幕上提示 `Autobooting...` 时按下 Home 键来打开引导菜单。 -1. 选择 `Boot Homebrew Launcher` 来启动 Homebrew Launcher。 -1. 移动 Homebrew Launcher 至 WUP Installer GX2 程序,然后打开它。 -1. 使用触屏来选择 `Homebrew Launcher Channel`。 点击 `Install` 然后以 `Yes` 确认。 -1. 选择 NAND 作为安装目标。 这会将 Homebrew Launcher Channel 安装到 Wii U 主菜单中。 -1. 一旦进程完成后,按下 Home 键来回到 Wii U 主菜单中。 -1. 然后你应该就会看到 Homebrew Launcher Channel 安装在你的 Wii U 主菜单中了。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/zh_CN/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index 1c0c3232e4d..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## 启动 CFW {docsify-ignore} - -若一切都无误操作,则你就能在之后得到你的 NAND 备份并在系统中运行 CFW 了。 - -与 DSi、Wii 或 3DS 不同的是,Wii U 的 CFW 是临时性的。 这代表在系统重启之后 CFW 就会失效,你必须重复下面的操作才能重新启动 CFW。 你可以选择安装 CBHC 来自动进入 Haxchi CFW 以跳过这些步骤。 - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- 安装完 CBHC 之后不要初始化系统!
- 不要删除购买此 DS VC 游戏的用户账户!
- 不要在 WUP Installer 或 eShop 中再次安装使用的同一游戏!
- 不要通过 CBHC 安装 Haxchi!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- 不要将使用的 DS VC 游戏移动到 USB 设备中! - -!> Breaking one of the above rules will result in a brick. - -> 如果你担心你会不小心做了上面的其中一件事,请考虑对你的账户设置家长控制! 阻止使用`数据管理(Data Management)`并设置`游戏评级(Game Rating)`为最高可防止你在使用 CBHC 的时候犯了错误。 点击[这里](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls)来了解如何更改家长控制的更多信息。 - -### 步骤 {docsify-ignore} - -1. 将内存卡从电脑上拔出并插回 Wii U。 -1. 若你还没有下载你的 DS VC 游戏,请从 eShop 上下载它。 -1. 按照[先前](browser-exploit)的方法在你的系统中启动 Homebrew Launcher。 -1. 启动 Homebrew Launcher 然后打开 Haxchi 程序。 -1. 使用十字键来移动光标至你想要用来安装 Haxchi 的游戏,然后按下 A 键来安装它。 -1. 一旦安装完成后,你的主机会自动启动至 Wii U 主菜单。 然后你就会看到你的游戏图标被 Haxchi 的所替代。 -1. 然后打开那个被修改的 DS 游戏。 这将重启主机,然后打开 CFW。 -1. 再次打开那个 DS 游戏,然后在启动后按住 A 键。 这将会启动 Homebrew Launcher。 -1. 移动 Homebrew Launcher 至 CBHC,然后启动它。 -1. 使用十字键来移动光标至你之前用来安装 Haxchi 的游戏,然后按下 A 键来安装 CBHC。 -1. 一旦安装完成后,你的主机会自动启动至 Wii U 主菜单。 -1. 重启你的主机。 如果 CBHC 正确安装了,那么你就应该会看到一个新的启动菜单。 (CBHC 与快速启动不兼容。 如果你正在使用快速启动菜单,请关闭它。) -1. 使用十字键移动至 `Autoboot: Disabled` 按几下 A 键,直到那一行变成 `Autoboot: System Menu` 为止。 -1. 使用十字键移动至 `Boot System Menu`,然后按下 A 键。 这将启动启用 CFW 的 Wii U 菜单。 -1. 你的主机现在应该每次重启都会自动进入至 CFW 了。 -1. 你现在可以重新插入你在开启做手册时拔出的 USB 设备了。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/cbhc/nand-backup.md b/translations/zh_CN/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 47a82ca3d68..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## 制作一个 NAND 备份{docsify-ignore} - -如果你在之后做错了什么导致 Wii U 变砖了,恢复 NAND 备份就可以修复它。 - -### 步骤 {docsify-ignore} - -?> Wii U NAND 备份的大小取决于你的设备型号,为 8GB 或 32GB。 为了备份 NAND,你需要准备一张大于你设备 NAND 的 SD 卡。 如果你的 SD 卡没有如此大的空间,你在备份的时候可以选择跳过 `MLC` 部分,其中保存的文件是你的游戏和游戏存档,救砖不需要恢复这些东西。 - -?> 不过恢复 NAND 备份需要额外的设备和一点微焊技能。
但是备份 NAND **是** 为了以防万一,所以不要跳过这些步骤。
你从某一台设备导出的 NAND 备份是那一台设备所独有的。 恢复其他主机的 NAND 备份 **不能救砖**。 - -1. 移动 Homebrew Launcher 至 `Wii U NAND Dumper` 程序并启动。 -1. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **可选** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. 按下 A 键启动导出的进程。 -1. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -1. 确认你的内存卡中有以下文件:`slc.bin`、`slccmpt.bin`、`seeprom.bin`、`otp.bin` 然后将其复制到电脑上。 若你选择了全部备份,则你还需要复制 `所有的 mlc.bin.part` 文件到电脑上。 -1. 从 SD 卡中删除文件来腾出空间。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/zh_CN/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index f206570e391..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD 卡准备 {docsify-ignore} - -我们现在需要把一些 CFW 需要使用到的文件放进你的 SD 卡。 - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 如果你的 SD 卡的格式不是 FAT32,则你需要用 [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) 格式化,格式化时请将分配单元大小设置为 32k(32768)。 **不要**把 SD 卡分区命名为 `wiiu`,这样做会导致出现 homebrew 程序上的问题。 - -### 你需要准备些啥? {docsify-ignore} - -- 最新版 [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest)。 - - 你需要下载 `payload.zip` 文件。 -- 1.4 版的 [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4)。 - - 你需要下载 v1.4 `homebrew_launcher.v1.4.zip` 的 Homebrew Launcher。 -- 最新版 [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip)。 -- 最新版 [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix)。 - - 你需要下载 `homebrew_launcher_channel.v2.1_fix.zip` 文件。 -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- 最新版 [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest)。 - - 你需要下载 `wiiu-extracttosd.zip` 文件。 -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- 最新版 SaveMii Mod。 - -### 步骤 {docsify-ignore} - -?> **注意** info.json 和 manifest.install 文件在破解过程中是不需要的,可以删除。 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. 在 SD 卡根目录下创建一个名为 `install` 的文件夹。 -1. 复制 `homebrew_launcher_channel.v2.1_fix.zip` 里的文件到你创建的 `install` 文件夹。 -1. 复制 `haxchi.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `cbhc.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wup_installer_gx2.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `nanddumper.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wiiu-extracttosd.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `homebrew_launcher.v.1.4.zip` 里的文件到你 SD 卡的根目录中。 -1. 复制 `savemii_mod.zip` 里的文件到你的 SD 卡根目录。 -1. 从 `payload.zip` 中解压 `payload.elf` 到 SD 卡根目录下的 `wiiu` 文件夹中。 ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_CN/docs/user-guide/archive/cbhc/sidebar.md b/translations/zh_CN/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index f203b1fb3af..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [主页](../../introduction) -- [选择一个 CFW](../cfw-choice) -- [选择你要用的 DS VC 游戏](ds-vc-choice) -- [SD 卡准备](sd-preparation) -- [浏览器漏洞](browser-exploit) -- [制作一个 NAND 备份](nand-backup) -- [启动 CFW](launching-cfw) -- [安装 Homebrew Channel](installing-hblc) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../../donations) -- [关于我们](../../about) \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/cfw-choice.md b/translations/zh_CN/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 797ae1dcc6c..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# 选择一个 CFW ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- 需要从 eShop 上购买并下载 DS VC 游戏。 -- 可以直接从 Wii U 主菜单中直接启动 CFW。 -- 每次重启之后都需要重新在 Wii U 中菜单启动来启用 CFW。 -- 它的功能可以通过安装 ColdBoot Haxchi(CBHC)来扩展。 - -### [**点击这里继续使用 Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- 安装完 CBHC 之后不要初始化系统!
- 不要删除购买此 DS VC 游戏的用户账户!
- 不要在 WUP Installer 或 eShop 中再次安装使用的同一游戏!
- 不要通过 CBHC 安装 Haxchi! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- 不要将使用的 DS VC 游戏移动到 USB 设备中! - -!> Breaking one of the above rules **can** result in a brick! - -> 如果你担心你会不小心做了上面的其中一件事,请考虑对你的账户设置家长控制! 阻止使用`数据管理(Data Management)`并设置`游戏评级(Game Rating)`为最高可防止你在使用 CBHC 的时候犯了错误。 点击[这里](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls)来了解如何更改家长控制的更多信息。 - -- 需要从 eShop 上购买并下载 DS VC 游戏。 -- 重启后会自动启动 CFW。 - -### [**点击这里继续使用 CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- 不需要任何游戏。 -- 每次重启之后都需要重新在 Wii U 触发浏览器漏洞来启用 CFW。 -- 与 Homebrew Launcher Channel 不兼容。 -- 根据你选择的进入方法可能会需要连接网络。 - -### [**点击这里继续使用 Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/zh_CN/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/zh_CN/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index dae06cc875c..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## 浏览器漏洞 {docsify-ignore} - -如要安装 CFW,我们首先需要通过浏览器漏洞来启动 Homebrew Launcher。 请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 步骤 {docsify-ignore} - -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 -1. 启动 Wii U 的浏览器,然后访问 `wiiuexploit.xyz` 网站。 -1. 点击 `Run Homebrew Launcher!`。 然后你的主机应该就启动到 Homebrew Launcher 了。 - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/zh_CN/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index 41911017937..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## 选择你要用的 DS VC 游戏 - -你首先需要决定你想用的 DS VC(Virtual Console)游戏,然后买下它。 -你选择注入进 Haxchi/CBHC 的游戏在直到卸载 Haxchi/CBHC 并从 eShop 重新下载之前将无法游玩。 - -### 兼容的 DS VC 游戏 - -?> 如果你是欧版主机,则你的主机中可能自带了 Dr. Kawashima's Brain Training: How Old is Your Brain? 免费游戏。 [进入 eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u),然后检查你是否已拥有该游戏。 - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/zh_CN/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/zh_CN/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index 53d91d67e95..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## 安装 Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### 步骤 {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. 打开你的主机。 -1. 从 Wii U 菜单中打开你安装了 Haxchi 的 DS 游戏。 这将重启并激活启用 CFW 的 Wii U 菜单。 -1. 再次启动 Haxchi DS 游戏一次,启动后按住 A 键。 这将会启动 Homebrew Launcher。 -1. 移动 Homebrew Launcher 至 WUP Installer GX2 程序,然后打开它。 -1. 使用触屏来选择 `Homebrew Launcher Channel`。 点击 `Install` 然后以 `Yes` 确认。 -1. 选择 NAND 作为安装目标。 这会将 Homebrew Launcher Channel 安装到 Wii U 主菜单中。 -1. 一旦进程完成后,按下 Home 键来回到 Wii U 主菜单中。 -1. 然后你应该就会看到 Homebrew Launcher Channel 安装在你的 Wii U 主菜单中了。 请注意,你需要在每次重启后重新启动 CFW 才能打开这个 Channel。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/zh_CN/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index 0581de4718e..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## 启动 CFW {docsify-ignore} - -若一切都无误操作,则你就能在之后得到你的 NAND 备份并在系统中运行 CFW 了。 - -与 DSi、Wii 或 3DS 不同的是,Wii U 的 CFW 是临时性的。 这代表在系统重启之后 CFW 就会失效,你必须重复下面的操作才能重新启动 CFW。 你可以选择安装 CBHC 来自动进入 Haxchi CFW 以跳过这些步骤。 - -### 步骤 {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. 将内存卡从电脑上拔出并插回 Wii U。 -1. 若你还没有下载你的 DS VC 游戏,请从 eShop 上下载它。 -1. 按照[先前](browser-exploit)的方法在你的系统中启动 Homebrew Launcher。 -1. 启动 Homebrew Launcher 然后打开 Haxchi 程序。 -1. 使用十字键来移动光标至你想要用来安装 Haxchi 的游戏,然后按下 A 键来安装它。 -1. 一旦安装完成后,你的主机会自动启动至 Wii U 主菜单。 然后你就会看到你的游戏图标被 Haxchi 的所替代。 -1. 然后打开那个被修改的 DS 游戏。 这将重启主机,然后打开 CFW。 -1. 在重启主机后你需要通过你安装了 Haxchi 的游戏来启动 CFW。 -1. 你现在可以重新插入你在开启做手册时拔出的 USB 设备了。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/haxchi/nand-backup.md b/translations/zh_CN/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index cf1b55537bb..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## 制作一个 NAND 备份{docsify-ignore} - -如果你在之后做错了什么导致 Wii U 变砖了,恢复 NAND 备份就可以修复它。 - -### 步骤 {docsify-ignore} - -?> Wii U NAND 备份的大小取决于你的设备型号,为 8GB 或 32GB。 为了备份 NAND,你需要准备一张大于你设备 NAND 的 SD 卡。 如果你的 SD 卡没有如此大的空间,你在备份的时候可以选择跳过 `MLC` 部分,其中保存的文件是你的游戏和游戏存档,救砖不需要恢复这些东西。 - -?> 不过恢复 NAND 备份需要额外的设备和一点微焊技能。
但是备份 NAND **是** 为了以防万一,所以不要跳过这些步骤。
你从某一台设备导出的 NAND 备份是那一台设备所独有的。 恢复其他主机的 NAND 备份 **不能救砖**。 - -1. 移动 Homebrew Launcher 至 `Wii U NAND Dumper` 程序并启动。 -1. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **可选** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. 按下 A 键启动导出的进程。 -1. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -1. 确认你的内存卡中有以下文件:`slc.bin`、`slccmpt.bin`、`seeprom.bin`、`otp.bin` 然后将其复制到电脑上。 若你选择了全部备份,则你还需要复制 `所有的 mlc.bin.part` 文件到电脑上。 -1. 从 SD 卡中删除文件来腾出空间。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/zh_CN/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index 20e8057be8d..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD 卡准备 {docsify-ignore} - -我们现在需要把一些 CFW 需要使用到的文件放进你的 SD 卡。 - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 如果你的 SD 卡的格式不是 FAT32,则你需要用 [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) 格式化,格式化时请将分配单元大小设置为 32k(32768)。 **不要**把 SD 卡分区命名为 `wiiu`,这样做会导致出现 homebrew 程序上的问题。 - -### 你需要准备些啥? {docsify-ignore} - -- 最新版 [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest)。 - - 你需要下载 `payload.zip` 文件。 -- 1.4 版的 [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4)。 - - 你需要下载 v1.4 `homebrew_launcher.v1.4.zip` 的 Homebrew Launcher。 -- 最新版 [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip)。 -- 最新版 [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix)。 - - 你需要下载 `homebrew_launcher_channel.v2.1_fix.zip` 文件。 -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- 最新版 [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest)。 - - 你需要下载 `wiiu-extracttosd.zip` 文件。 -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- 最新版 SaveMii Mod。 - -### 步骤 {docsify-ignore} - -?> **注意** info.json 和 manifest.install 文件在破解过程中是不需要的,可以删除。 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. 在 SD 卡根目录下创建一个名为 `install` 的文件夹。 -1. 复制 `homebrew_launcher_channel.v2.1_fix.zip` 里的文件到你创建的 `install` 文件夹。 -1. 复制 `haxchi.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wup_installer_gx2.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `nanddumper.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wiiu-extracttosd.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `homebrew_launcher.v.1.4.zip` 里的文件到你 SD 卡的根目录中。 -1. 复制 `savemii_mod.zip` 里的文件到你的 SD 卡根目录。 -1. 从 `payload.zip` 中解压 `payload.elf` 到 SD 卡根目录下的 `wiiu` 文件夹中。 ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_CN/docs/user-guide/archive/haxchi/sidebar.md b/translations/zh_CN/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index 95342f47f59..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [主页](../../introduction) -- [选择一个 CFW](../cfw-choice) -- [选择你要用的 DS VC 游戏](ds-vc-choice) -- [SD 卡准备](sd-preparation) -- [浏览器漏洞](browser-exploit) -- [制作一个 NAND 备份](nand-backup) -- [启动 CFW](launching-cfw) -- [安装 Homebrew Channel](installing-hblc) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../../donations) -- [关于我们](../../about) \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/zh_CN/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index f95ffbec436..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## 在线漏洞 - -- 每次你想启动 Homebrew Launcher 时都需要连接网络。 - -### [**点击这里继续使用在线漏洞**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- 安装过程中需要连接网络,但安装完成后你就可以脱离网络使用。 -- 需要你修改一个系统文件。 - -### [**点击这里继续使用 Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index ae669201468..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## 浏览器漏洞 {docsify-ignore} - -如要安装 CFW,我们首先需要通过浏览器漏洞来启动 Homebrew Launcher。 请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 步骤 {docsify-ignore} - -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 -1. 启动 Wii U 的浏览器,然后访问 `wiiuexploit.xyz` 网站。 -1. 点击 `Run Homebrew Launcher!`。 然后你的主机应该就启动到 Homebrew Launcher 了。 - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index 98b00674555..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## 浏览器破解 {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### 步骤 {docsify-ignore} - -1. 打开你的 Wii U。 -1. 启动 Wii U 的浏览器,打开 `wiiuexploit.xyz` 。 -1. 点击 `Run Homebrew Launcher!`。 然后你的主机应该就启动到 Homebrew Launcher 了。 - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 -1. 移动 Homebrew Launcher 至 `Indexiine Installer` 程序并启动。 -1. 按下 A 键安装 Indexiine。 -1. 当进程完成后,请关闭 Homebrew Launcher 来返回你的 Wii U 主菜单。 - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index 3121926b5bc..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## 启动 CFW {docsify-ignore} - -与 DSi、Wii 或 3DS 不同的是,Wii U 的 CFW 是临时性的。 这代表在系统重启之后 CFW 就会失效,你必须重复下面的操作才能重新启动 CFW。 你可以选择安装 CBHC 来自动进入 Haxchi CFW 以跳过这些步骤。 - -### 步骤 {docsify-ignore} - -1. 通过 Wii U 浏览器启动 Homebrew Launcher。 -1. 启动 Homebrew Launcher 然后打开 Mocha CFW 程序。 -1. 它将会带你自动回到 Homebrew Launcher 然后启用 CFW。 -1. 在重启主机后你需要重新做这些操作来启动 CFW。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f41cb4b0f3b..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## 制作一个 NAND 备份{docsify-ignore} - -如果你在之后做错了什么导致 Wii U 变砖了,恢复 NAND 备份就可以修复它。 - -### 步骤 {docsify-ignore} - -?> Wii U NAND 备份的大小取决于你的设备型号,为 8GB 或 32GB。 为了备份 NAND,你需要准备一张大于你设备 NAND 的 SD 卡。 如果你的 SD 卡没有如此大的空间,你在备份的时候可以选择跳过 `MLC` 部分,其中保存的文件是你的游戏和游戏存档,救砖不需要恢复这些东西。 - -?> 不过恢复 NAND 备份需要额外的设备和一点微焊技能。
但是备份 NAND **是** 为了以防万一,所以不要跳过这些步骤。
你从某一台设备导出的 NAND 备份是那一台设备所独有的。 恢复其他主机的 NAND 备份 **不能救砖**。 - -1. 移动 Homebrew Launcher 至 `Wii U NAND Dumper` 程序并启动。 -1. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **可选** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. 按下 A 键启动导出的进程。 -1. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -1. 确认你的内存卡中有以下文件:`slc.bin`、`slccmpt.bin`、`seeprom.bin`、`otp.bin` 然后将其复制到电脑上。 若你选择了全部备份,则你还需要复制 `所有的 mlc.bin.part` 文件到电脑上。 -1. 从 SD 卡中删除文件来腾出空间。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index 63b1a0199b6..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD 卡准备 {docsify-ignore} - -我们现在需要把一些 CFW 需要使用到的文件放进你的 SD 卡。 - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 如果你的 SD 卡的格式不是 FAT32,则你需要用 [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) 格式化,格式化时请将分配单元大小设置为 32k(32768)。 **不要**把 SD 卡分区命名为 `wiiu`,这样做会导致出现 homebrew 程序上的问题。 - -### 你需要准备些啥? {docsify-ignore} - -- Mocha 配置文件。 -- 最新版 [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest)。 - - 你需要下载 `payload.zip` 文件。 -- 1.4 版的 [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4)。 - - 你需要下载 v1.4 `homebrew_launcher.v1.4.zip` 的 Homebrew Launcher。 -- 最新版 [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip)。 -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- 最新版 [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest)。 - - 你需要下载 `wiiu-extracttosd.zip` 文件。 -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- 最新版 SaveMii Mod。 -- 最新版 [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest)。 - -### 步骤 {docsify-ignore} - -?> **注意** info.json 和 manifest.install 文件在破解过程中是不需要的,可以删除。 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. 复制 `wup_installer_gx2.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `nanddumper.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wiiu-extracttosd.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `homebrew_launcher.v.1.4.zip` 里的文件到你 SD 卡的根目录中。 -1. 复制 `mocha.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `indexiine-installer.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `savemii_mod.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `config.ini` 到 SD 卡的 `/wiiu/apps/mocha` 文件夹下。 -1. 从 `payload.zip` 中解压 `payload.elf` 到 SD 卡根目录下的 `wiiu` 文件夹中。 ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 6921e318570..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [主页](../../../introduction) -- [选择一个 CFW](../../cfw-choice) -- [选择一个进入方法](../entrypoint-choice) -- [SD 卡准备](sd-preparation) -- [浏览器漏洞](browser-exploit) -- [制作一个 NAND 备份](nand-backup) -- [浏览器破解](browser-modding) -- [启动 CFW](launching-cfw) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../../../donations) -- [关于我们](../../../about) \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index deb8af4d12b..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## 浏览器漏洞 {docsify-ignore} - -如要安装 CFW,我们首先需要通过浏览器漏洞来启动 Homebrew Launcher。 请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 步骤 {docsify-ignore} - -1. 把 SD 卡从电脑中弹出,并插入 Wii U 主机。 -1. 启动 Wii U 的浏览器,打开 `wiiuexploit.xyz` 。 -1. 点击 `Run Homebrew Launcher!`。 主机将会启动 Homebrew Launcher。 - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index d9d01dc2683..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## 启动 CFW {docsify-ignore} - -若一切都无误操作,则你就能在之后得到你的 NAND 备份并在系统中运行 CFW 了。 - -与 DSi、Wii 或 3DS 不同的是,Wii U 的 CFW 是临时性的。 这代表在系统重启之后 CFW 就会失效,你必须重复下面的操作才能重新启动 CFW。 你可以选择安装 CBHC 来自动进入 Haxchi CFW 以跳过这些步骤。 - -### 步骤 {docsify-ignore} - -1. 将内存卡从电脑上拔出并插回 Wii U。 -1. 按照[先前](browser-exploit)的方法在你的系统中启动 Homebrew Launcher。 -1. 启动 Homebrew Launcher 然后打开 Mocha CFW 程序。 -1. 它将会带你自动回到 Homebrew Launcher 然后启用 CFW。 -1. 在重启主机后你需要重新做这些操作来启动 CFW。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 4be0b02856a..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## 制作一个 NAND 备份{docsify-ignore} - -如果你在之后做错了什么导致 Wii U 变砖了,恢复 NAND 备份就可以修复它。 - -### 步骤 {docsify-ignore} - -?> Wii U NAND 备份的大小取决于你的设备型号,为 8GB 或 32GB。 为了备份 NAND,你需要准备一张大于你设备 NAND 的 SD 卡。 如果你的 SD 卡没有如此大的空间,你在备份的时候可以选择跳过 `MLC` 部分,其中保存的文件是你的游戏和游戏存档,救砖不需要恢复这些东西。 - -?> 不过恢复 NAND 备份需要额外的设备和一点微焊技能。
但是备份 NAND **是** 为了以防万一,所以不要跳过这些步骤。
你从某一台设备导出的 NAND 备份是那一台设备所独有的。 恢复其他主机的 NAND 备份 **不能救砖**。 - -1. 移动 Homebrew Launcher 至 `Wii U NAND Dumper` 程序并启动。 -1. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **可选** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. 按下 A 键启动导出的进程。 -1. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -1. 确认你的内存卡中有以下文件:`slc.bin`、`slccmpt.bin`、`seeprom.bin`、`otp.bin` 然后将其复制到电脑上。 若你选择了全部备份,则你还需要复制 `所有的 mlc.bin.part` 文件到电脑上。 -1. 从 SD 卡中删除文件来腾出空间。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index e0f0218d2a4..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD 卡准备 {docsify-ignore} - -我们现在需要把一些 CFW 需要使用到的文件放进你的 SD 卡。 - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 如果你的 SD 卡的格式不是 FAT32,则你需要用 [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) 格式化,格式化时请将分配单元大小设置为 32k(32768)。 **不要**把 SD 卡分区命名为 `wiiu`,这样做会导致出现 homebrew 程序上的问题。 - -### 你需要准备些啥? {docsify-ignore} - -- Mocha 配置文件。 -- 最新版 [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest)。 - - 你需要下载 `payload.zip` 文件。 -- 1.4 版的 [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4)。 - - 你需要下载 v1.4 `homebrew_launcher.v1.4.zip` 的 Homebrew Launcher。 -- 最新版 [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip)。 -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- 最新版 [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest)。 - - 你需要下载 `wiiu-extracttosd.zip` 文件。 -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- 最新版 SaveMii Mod。 - -### 步骤 {docsify-ignore} - -?> **注意** info.json 和 manifest.install 文件在破解过程中是不需要的,可以删除。 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. 复制 `wup_installer_gx2.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `nanddumper.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wiiu-extracttosd.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `homebrew_launcher.v.1.4.zip` 里的文件到你 SD 卡的根目录中。 -1. 复制 `mocha.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `savemii_mod.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `config.ini` 到 SD 卡的 `/wiiu/apps/mocha` 文件夹下。 -1. 从 `payload.zip` 中解压 `payload.elf` 到 SD 卡根目录下的 `wiiu` 文件夹中。 ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 2adb68ba8a2..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - 在线漏洞** -- [主页](../../../introduction) -- [选择一个 CFW](../../cfw-choice) -- [选择一个进入方法](../entrypoint-choice) -- [SD 卡准备](sd-preparation) -- [浏览器漏洞](browser-exploit) -- [制作一个 NAND 备份](nand-backup) -- [启动 CFW](launching-cfw) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../../../donations) -- [关于我们](../../../about) \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/mocha/sidebar.md b/translations/zh_CN/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index 597d4fcc332..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [主页](../../introduction) -- [选择一个 CFW](../cfw-choice) -- [选择一个进入方法](entrypoint-choice) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../../donations) -- [关于我们](../../about) \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/sidebar.md b/translations/zh_CN/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 8733e27ccfd..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [主页](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../../donations) -- [关于我们](../../about) -- **隐私** -- [隐私政策](../../privacy-policy) diff --git a/translations/zh_CN/docs/user-guide/archive/tiramisu/autoboot.md b/translations/zh_CN/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index b90a5a4f9a7..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### 操作步骤 - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/zh_CN/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/zh_CN/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index b7cbbf7c834..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## 浏览器漏洞 - -请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 操作步骤 - -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 -1. 启动 Wii U 的浏览器,然后访问 `wiiuexploit.xyz` 网站。 -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/zh_CN/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/zh_CN/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 8bc95acda64..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. 打开你的 Wii U。 - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/zh_CN/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/zh_CN/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index d03b753d55c..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### 操作步骤 - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. 将内存卡从电脑上拔出并插回 Wii U。 -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/zh_CN/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 355916c6946..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## 制作一个 NAND 备份 - -如果你在之后做错了什么导致 Wii U 变砖了,恢复 NAND 备份就可以修复它。 - -### 操作步骤 - -?> Wii U NAND 备份的大小取决于你的设备型号,为 8GB 或 32GB。 为了备份 NAND,你需要准备一张大于你设备 NAND 的 SD 卡。 如果你的 SD 卡没有如此大的空间,你在备份的时候可以选择跳过 `MLC` 部分,其中保存的文件是你的游戏和游戏存档,救砖不需要恢复这些东西。 - -?> 不过恢复 NAND 备份需要额外的设备和一点微焊技能。
但是备份 NAND **是** 为了以防万一,所以不要跳过这些步骤。
你从某一台设备导出的 NAND 备份是那一台设备所独有的。 恢复其他主机的 NAND 备份 **不能救砖**。 - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **可选** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. 按下 A 键启动导出的进程。 -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. 从 SD 卡中删除文件来腾出空间。 - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/zh_CN/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/zh_CN/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index c0c493a7d4d..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD 卡准备 - -我们现在需要把一些 CFW 需要使用到的文件放进你的 SD 卡。 - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 如果你的 SD 卡的格式不是 FAT32,则你需要用 [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) 格式化,格式化时请将分配单元大小设置为 32k(32768)。
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### 你需要准备点啥? - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### 操作步骤 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/zh_CN/docs/user-guide/archive/tiramisu/sidebar.md b/translations/zh_CN/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 17869616e71..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [主页](../../introduction) -- [SD 卡准备](sd-preparation) -- [浏览器漏洞](browser-exploit) -- [制作一个 NAND 备份](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../donations) -- [关于我们](../about) diff --git a/translations/zh_CN/docs/user-guide/archive/vwii/browser-exploit.md b/translations/zh_CN/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 35133899591..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 步骤 {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/zh_CN/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/zh_CN/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/zh_CN/docs/user-guide/archive/vwii/installing-cioses.md b/translations/zh_CN/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index 73ec92fcd11..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## 安装 cIOS - -1. 将 Wii U 开机,然后启动 vWii。 -2. 启动 Homebrew Channel。 -3. 启动 d2x cIOS Installer。 -4. 设定以下选项: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. 设定以下选项: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. 设定以下选项: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/zh_CN/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/zh_CN/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/zh_CN/docs/user-guide/archive/vwii/nand-backup.md b/translations/zh_CN/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index b1e5cdecbae..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND 备份 - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. 按下 A 键启动导出的进程。 -4. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. 从 SD 卡中删除文件来腾出空间。 -7. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 diff --git a/translations/zh_CN/docs/user-guide/archive/vwii/patching-ios80.md b/translations/zh_CN/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 84e2eb66a3c..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. 启动 vWii 的 Patched IOS 80 Installer。 -2. 阅读警告信息并等待 30 秒。 -3. 按下任意键来安装。 -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/zh_CN/docs/user-guide/archive/vwii/sd-preparation.md b/translations/zh_CN/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 4a086cdf566..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -此页将会教你如何修改 vWii。 - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### 你需要准备点啥? - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## 操作步骤 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 diff --git a/translations/zh_CN/docs/user-guide/archive/vwii/sidebar.md b/translations/zh_CN/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/zh_CN/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/zh_CN/docs/user-guide/aroma/autoboot.md b/translations/zh_CN/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index 779ff7913ad..00000000000 --- a/translations/zh_CN/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### 操作步骤 - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/zh_CN/docs/user-guide/aroma/browser-exploit.md b/translations/zh_CN/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 2f0ed987557..00000000000 --- a/translations/zh_CN/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## 浏览器漏洞 - -请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 操作步骤 - -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/zh_CN/docs/user-guide/aroma/finalizing-setup.md b/translations/zh_CN/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index dbd3aa26eaa..00000000000 --- a/translations/zh_CN/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/zh_CN/docs/user-guide/aroma/getting-started.md b/translations/zh_CN/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/zh_CN/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/zh_CN/docs/user-guide/aroma/installing-payloadloader.md b/translations/zh_CN/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 3ae13c86aa1..00000000000 --- a/translations/zh_CN/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### 操作步骤 - -?> If you're already booted into Aroma, you may skip to step 5. - -1. 将内存卡从电脑上拔出并插回 Wii U。 -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/zh_CN/docs/user-guide/aroma/nand-backup.md b/translations/zh_CN/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 3e6d8608d5a..00000000000 --- a/translations/zh_CN/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## 制作一个 NAND 备份 - -如果你在之后做错了什么导致 Wii U 变砖了,恢复 NAND 备份就可以修复它。 - -### 操作步骤 - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
你从某一台设备导出的 NAND 备份是那一台设备所独有的。 Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. 按下 A 键启动导出的进程。 -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/zh_CN/docs/user-guide/aroma/sd-preparation.md b/translations/zh_CN/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index 7c84c2ca645..00000000000 --- a/translations/zh_CN/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD 卡准备 - -We will now place the required Aroma files on the SD Card. - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### 操作步骤 - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/zh_CN/docs/user-guide/aroma/sidebar.md b/translations/zh_CN/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index 09defd88d2f..00000000000 --- a/translations/zh_CN/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [主页](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD 卡准备](sd-preparation) -- [浏览器漏洞](browser-exploit) -- [NAND 备份](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../donations) -- [关于我们](../about) diff --git a/translations/zh_CN/docs/user-guide/cbhc/browser-exploit.md b/translations/zh_CN/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index c5b9ef87920..00000000000 --- a/translations/zh_CN/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## 浏览器漏洞 {docsify-ignore} - -如要安装 CFW,我们首先需要通过浏览器漏洞来启动 Homebrew Launcher。 请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 步骤 {docsify-ignore} - -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 -1. 启动 Wii U 的浏览器,然后访问 `wiiuexploit.xyz` 网站。 -1. 点击 `Run Homebrew Launcher!`。 然后你的主机应该就启动到 Homebrew Launcher 了。 - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/cbhc/ds-vc-choice.md b/translations/zh_CN/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index c99b725424f..00000000000 --- a/translations/zh_CN/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## 选择你要用的 DS VC 游戏 - -你首先需要决定你想用的 DS VC(Virtual Console)游戏,然后买下它。 -你选择注入进 Haxchi/CBHC 的游戏在直到卸载 Haxchi/CBHC 并从 eShop 重新下载之前将无法游玩。 - -### 兼容的 DS VC 游戏 - -?> 如果你是欧版主机,则你的主机中可能自带了 Dr. Kawashima's Brain Training: How Old is Your Brain? 免费游戏。 [进入 eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u),然后检查你是否已拥有该游戏。 - -如果你没有下面列出的任何游戏,我们建议你购买 Brain Age(北美)或 Brain Training(欧洲)游戏,因为它们是目前所有已知兼容游戏中最便宜的,而且我们不认为你会想玩这两个游戏。 - -- **Animal Crossing: Wild World** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/zh_CN/docs/user-guide/cbhc/installing-hblc.md b/translations/zh_CN/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index ecc807ec21a..00000000000 --- a/translations/zh_CN/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## 安装 Homebrew Launcher Channel {docsify-ignore} - -这个页面将会指导你安装 Homebrew Launcher Channel 为一个可在主菜单中打开的程序,来方便打开。 - -?> 此页面只适用于 Haxchi 和 CBHC 用户。 Homebrew Launcher Channel(从 Wii U 主菜单中启动的 Homebrew Channel)**不适用**于 Mocha CFW! - -### 步骤 {docsify-ignore} - -1. 打开你的主机。 -1. 在屏幕上提示 `Autobooting...` 时按下 Home 键来打开引导菜单。 -1. 选择 `Boot Homebrew Launcher` 来启动 Homebrew Launcher。 -1. 移动 Homebrew Launcher 至 WUP Installer GX2 程序,然后打开它。 -1. 使用触屏来选择 `Homebrew Launcher Channel`。 点击 `Install` 然后以 `Yes` 确认。 -1. 选择 NAND 作为安装目标。 这会将 Homebrew Launcher Channel 安装到 Wii U 主菜单中。 -1. 一旦进程完成后,按下 Home 键来回到 Wii U 主菜单中。 -1. 然后你应该就会看到 Homebrew Launcher Channel 安装在你的 Wii U 主菜单中了。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/cbhc/launching-cfw.md b/translations/zh_CN/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 8691fc4ccd6..00000000000 --- a/translations/zh_CN/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## 启动 CFW {docsify-ignore} - -若一切都无误操作,则你就能在之后得到你的 NAND 备份并在系统中运行 CFW 了。 - -与 DSi、Wii 或 3DS 不同的是,Wii U 的 CFW 是临时性的。 这代表在系统重启之后 CFW 就会失效,你必须重复下面的操作才能重新启动 CFW。 你可以选择安装 CBHC 来自动进入 Haxchi CFW 以跳过这些步骤。 - -!> 若安装 CBHC 时发生了操作错误会导致 Wii U 砖机。所以请确保你在安装 CBHC 时遵循以下规定:
- 使用的 DS 游戏必须是从 eShop 下载的正版游戏!
- 安装完 CBHC 之后不要初始化系统!
- 不要删除购买此 DS VC 游戏的用户账户!
- 不要在 WUP Installer 或 eShop 中再次安装使用的同一游戏!
- 不要通过 CBHC 安装 Haxchi!
- 不要在[正确卸载 CBHC 之前](../uninstall-cbhc)卸载使用的 DS VC 游戏!
- 不要将使用的 DS VC 游戏移动到 USB 设备中! - -!> 若你想斗胆试试无视上述规定的规则,那么你就死掉了。 - -> 如果你担心你会不小心做了上面的其中一件事,请考虑对你的账户设置家长控制! 阻止使用`数据管理(Data Management)`并设置`游戏评级(Game Rating)`为最高可防止你在使用 CBHC 的时候犯了错误。 点击[这里](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls)来了解如何更改家长控制的更多信息。 - -### 步骤 {docsify-ignore} - -1. 将内存卡从电脑上拔出并插回 Wii U。 -1. 若你还没有下载你的 DS VC 游戏,请从 eShop 上下载它。 -1. 按照[先前](browser-exploit)的方法在你的系统中启动 Homebrew Launcher。 -1. 启动 Homebrew Launcher 然后打开 Haxchi 程序。 -1. 使用十字键来移动光标至你想要用来安装 Haxchi 的游戏,然后按下 A 键来安装它。 -1. 一旦安装完成后,你的主机会自动启动至 Wii U 主菜单。 然后你就会看到你的游戏图标被 Haxchi 的所替代。 -1. 然后打开那个被修改的 DS 游戏。 这将重启主机,然后打开 CFW。 -1. 再次打开那个 DS 游戏,然后在启动后按住 A 键。 这将会启动 Homebrew Launcher。 -1. 移动 Homebrew Launcher 至 CBHC,然后启动它。 -1. 使用十字键来移动光标至你之前用来安装 Haxchi 的游戏,然后按下 A 键来安装 CBHC。 -1. 一旦安装完成后,你的主机会自动启动至 Wii U 主菜单。 -1. 重启你的主机。 如果 CBHC 正确安装了,那么你就应该会看到一个新的启动菜单。 (CBHC 与快速启动不兼容。 如果你正在使用快速启动菜单,请关闭它。) -1. 使用十字键移动至 `Autoboot: Disabled` 按几下 A 键,直到那一行变成 `Autoboot: System Menu` 为止。 -1. 使用十字键移动至 `Boot System Menu`,然后按下 A 键。 这将启动启用 CFW 的 Wii U 菜单。 -1. 你的主机现在应该每次重启都会自动进入至 CFW 了。 -1. 你现在可以重新插入你在开启做手册时拔出的 USB 设备了。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/cbhc/nand-backup.md b/translations/zh_CN/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index 791731478ea..00000000000 --- a/translations/zh_CN/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## 制作一个 NAND 备份{docsify-ignore} - -如果你在之后做错了什么导致 Wii U 变砖了,恢复 NAND 备份就可以修复它。 - -### 步骤 {docsify-ignore} - -?> Wii U NAND 备份的大小取决于你的设备型号,为 8GB 或 32GB。 为了备份 NAND,你需要准备一张大于你设备 NAND 的 SD 卡。 如果你的 SD 卡没有如此大的空间,你在备份的时候可以选择跳过 `MLC` 部分,其中保存的文件是你的游戏和游戏存档,救砖不需要恢复这些东西。 - -?> 不过恢复 NAND 备份需要额外的设备和一点微焊技能。
但是备份 NAND **是** 为了以防万一,所以不要跳过这些步骤。
你从某一台设备导出的 NAND 备份是那一台设备所独有的。 恢复其他主机的 NAND 备份 **不能救砖**。 - -1. 移动 Homebrew Launcher 至 `Wii U NAND Dumper` 程序并启动。 -1. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **可选** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. 按下 A 键启动导出的进程。 -1. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -1. 确认你的内存卡中有以下文件:`slc.bin`、`slccmpt.bin`、`seeprom.bin`、`otp.bin` 然后将其复制到电脑上。 若你选择了全部备份,则你还需要复制 `所有的 mlc.bin.part` 文件到电脑上。 -1. 从 SD 卡中删除文件来腾出空间。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/cbhc/sd-preparation.md b/translations/zh_CN/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index b36de521b13..00000000000 --- a/translations/zh_CN/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD 卡准备 {docsify-ignore} - -我们现在需要把一些 CFW 需要使用到的文件放进你的 SD 卡。 - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 如果你的 SD 卡的格式不是 FAT32,则你需要用 [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) 格式化,格式化时请将分配单元大小设置为 32k(32768)。 **不要**把 SD 卡分区命名为 `wiiu`,这样做会导致出现 homebrew 程序上的问题。 - -### 你需要准备些啥? {docsify-ignore} - -- 最新版 [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest)。 - - 你需要下载 `payload.zip` 文件。 -- 1.4 版的 [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4)。 - - 你需要下载 v1.4 `homebrew_launcher.v1.4.zip` 的 Homebrew Launcher。 -- 最新版 [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip)。 -- 最新版 [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix)。 - - 你需要下载 `homebrew_launcher_channel.v2.1_fix.zip` 文件。 -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- 最新版 [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest)。 - - 你需要下载 `wiiu-extracttosd.zip` 文件。 -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- 最新版 SaveMii Mod。 - -### 步骤 {docsify-ignore} - -?> **注意** info.json 和 manifest.install 文件在破解过程中是不需要的,可以删除。 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. 在 SD 卡根目录下创建一个名为 `install` 的文件夹。 -1. 复制 `homebrew_launcher_channel.v2.1_fix.zip` 里的文件到你创建的 `install` 文件夹。 -1. 复制 `haxchi.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `cbhc.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wup_installer_gx2.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `nanddumper.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wiiu-extracttosd.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `homebrew_launcher.v.1.4.zip` 里的文件到你 SD 卡的根目录中。 -1. 复制 `savemii_mod.zip` 里的文件到你的 SD 卡根目录。 -1. 从 `payload.zip` 中解压 `payload.elf` 到 SD 卡根目录下的 `wiiu` 文件夹中。 ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_CN/docs/user-guide/cbhc/sidebar.md b/translations/zh_CN/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index a72b8df8147..00000000000 --- a/translations/zh_CN/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [主页](../introduction) -- [选择一个 CFW](../cfw-choice) -- [选择你要用的 DS VC 游戏](ds-vc-choice) -- [SD 卡准备](sd-preparation) -- [浏览器漏洞](browser-exploit) -- [制作一个 NAND 备份](nand-backup) -- [启动 CFW](launching-cfw) -- [安装 Homebrew Channel](installing-hblc) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../donations) -- [关于我们](../about) \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/cfw-choice.md b/translations/zh_CN/docs/user-guide/cfw-choice.md deleted file mode 100644 index 38957e8c1f0..00000000000 --- a/translations/zh_CN/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# 选择一个 CFW ---- -?> 开始前,请将你的 Wii U 主机升级至最新固件(5.5.5)。 - -这里有两种主流自制固件:Haxchi/Coldboot Haxchi(简称为“CBHC”)和 Mocha。 - -Haxchi/CBHC 都需要对一个来自购买的 DS VC 游戏进行注入。 Haxchi 需要手动在 Wii U 主菜单中启动,而 CBHC 可以在开机的时候就自动启动。 Mocha 是通过浏览器漏洞或 Indexiine 方法启动的,它是唯一可以不花任何额外开销而使用自制固件的方法。 - -**你**需要自行决定使用哪一种自制固件。 请挑一个你认为最合适的自制固件! - -## Haxchi - -- 需要从 eShop 上购买并下载 DS VC 游戏。 -- 可以直接从 Wii U 主菜单中直接启动 CFW。 -- 每次重启之后都需要重新在 Wii U 中菜单启动来启用 CFW。 -- 它的功能可以通过安装 ColdBoot Haxchi(CBHC)来扩展。 - -### [**点击这里继续使用 Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> 如果安装 CBHC 不当会导致你的 Wii U 变砖! 所以请确保你在安装 CBHC 时遵循以下规定:
- 使用的 DS 游戏必须是从 eShop 下载的正版游戏!
- 安装完 CBHC 之后不要初始化系统!
- 不要删除购买此 DS VC 游戏的用户账户!
- 不要在 WUP Installer 或 eShop 中再次安装使用的同一游戏!
- 不要通过 CBHC 安装 Haxchi! (你的主机不会变砖,但这会导致无限重启! 在开机的时候按住 A 键来进入 Homebrew Launcher 并卸载 CBHC。)
- 不要在[正确卸载 CBHC 之前](uninstall-cbhc)卸载使用的 DS VC 游戏!
- 不要将使用的 DS VC 游戏移动到 USB 设备中! - -!> 若你想斗胆试试无视上述规定的规则,那么你就**死掉**了。 - -> 如果你担心你会不小心做了上面的其中一件事,请考虑对你的账户设置家长控制! 阻止使用`数据管理(Data Management)`并设置`游戏评级(Game Rating)`为最高可防止你在使用 CBHC 的时候犯了错误。 点击[这里](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls)来了解如何更改家长控制的更多信息。 - -- 需要从 eShop 上购买并下载 DS VC 游戏。 -- 重启后会自动启动 CFW。 - -### [**点击这里继续使用 CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- 不需要任何游戏。 -- 每次重启之后都需要重新在 Wii U 触发浏览器漏洞来启用 CFW。 -- 与 Homebrew Launcher Channel 不兼容。 -- 根据你选择的进入方法可能会需要连接网络。 - -### [**点击这里继续使用 Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/zh_CN/docs/user-guide/haxchi/browser-exploit.md b/translations/zh_CN/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index b20d88373a8..00000000000 --- a/translations/zh_CN/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## 浏览器漏洞 {docsify-ignore} - -如要安装 CFW,我们首先需要通过浏览器漏洞来启动 Homebrew Launcher。 请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 步骤 {docsify-ignore} - -1. 把 SD 卡从电脑中弹出,并插入 Wii U 主机。 -1. 启动 Wii U 的浏览器,打开 `wiiuexploit.xyz` 。 -1. 点击 `Run Homebrew Launcher!`。 主机将会启动 Homebrew Launcher。 - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/haxchi/ds-vc-choice.md b/translations/zh_CN/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index 78dc9816de6..00000000000 --- a/translations/zh_CN/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## 选择你要用的 DS VC 游戏 - -你首先需要决定你想用的 DS VC(Virtual Console)游戏,然后买下它。 -你选择注入进 Haxchi/CBHC 的游戏在直到卸载 Haxchi/CBHC 并从 eShop 重新下载之前将无法游玩。 - -### 兼容的 DS VC 游戏 - -?> 如果你是欧版主机,则你的主机中可能自带了 Dr. Kawashima's Brain Training: How Old is Your Brain? 免费游戏。 [进入 eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u),然后检查你是否已拥有该游戏。 - -如果你没有下面列出的任何游戏,我们建议你购买 Brain Age(北美)或 Brain Training(欧洲)游戏,因为它们是目前所有已知兼容游戏中最便宜的,而且我们不认为你会想玩这两个游戏。 - -- **Animal Crossing: Wild World** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [欧版](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [美版](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [日版](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/zh_CN/docs/user-guide/haxchi/installing-hblc.md b/translations/zh_CN/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index 635d73d196c..00000000000 --- a/translations/zh_CN/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## 安装 Homebrew Launcher Channel {docsify-ignore} - -这个页面将会指导你安装 Homebrew Launcher Channel 为一个可在主菜单中打开的程序,来方便打开。 - -### 步骤 {docsify-ignore} - -?> 是否需要安装 Homebrew Launcher Channel 由你自己决定,因为你可以在启动 Haxchi 的时候按住 A 键来启动 Homebrew Launcher。 - -1. 打开你的主机。 -1. 从 Wii U 菜单中打开你安装了 Haxchi 的 DS 游戏。 这将重启并激活启用 CFW 的 Wii U 菜单。 -1. 再次启动 Haxchi DS 游戏一次,启动后按住 A 键。 这将会启动 Homebrew Launcher。 -1. 移动 Homebrew Launcher 至 WUP Installer GX2 程序,然后打开它。 -1. 使用触屏来选择 `Homebrew Launcher Channel`。 点击 `Install` 然后以 `Yes` 确认。 -1. 选择 NAND 作为安装目标。 这会将 Homebrew Launcher Channel 安装到 Wii U 主菜单中。 -1. 一旦进程完成后,按下 Home 键来回到 Wii U 主菜单中。 -1. 然后你应该就会看到 Homebrew Launcher Channel 安装在你的 Wii U 主菜单中了。 请注意,你需要在每次重启后重新启动 CFW 才能打开这个 Channel。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/haxchi/launching-cfw.md b/translations/zh_CN/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index 540b01f1582..00000000000 --- a/translations/zh_CN/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## 启动 CFW {docsify-ignore} - -若一切都无误操作,则你就能在之后得到你的 NAND 备份并在系统中运行 CFW 了。 - -与 DSi、Wii 或 3DS 不同的是,Wii U 的 CFW 是临时性的。 这代表在系统重启之后 CFW 就会失效,你必须重复下面的操作才能重新启动 CFW。 你可以选择安装 CBHC 来自动进入 Haxchi CFW 以跳过这些步骤。 - -### 步骤 {docsify-ignore} - -?> 如果安装因为某些原因而失败了,请尝试卸载游戏并重新从 eShop 上下载这个游戏,并确保你是将游戏安装到 NAND 中的。 - -1. 将内存卡从电脑上拔出并插回 Wii U。 -1. 若你还没有下载你的 DS VC 游戏,请从 eShop 上下载它。 -1. 按照[先前](browser-exploit)的方法在你的系统中启动 Homebrew Launcher。 -1. 启动 Homebrew Launcher 然后打开 Haxchi 程序。 -1. 使用十字键来移动光标至你想要用来安装 Haxchi 的游戏,然后按下 A 键来安装它。 -1. 一旦安装完成后,你的主机会自动启动至 Wii U 主菜单。 然后你就会看到你的游戏图标被 Haxchi 的所替代。 -1. 然后打开那个被修改的 DS 游戏。 这将重启主机,然后打开 CFW。 -1. 在重启主机后你需要通过你安装了 Haxchi 的游戏来启动 CFW。 -1. 你现在可以重新插入你在开启做手册时拔出的 USB 设备了。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/haxchi/nand-backup.md b/translations/zh_CN/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 350a3ef249e..00000000000 --- a/translations/zh_CN/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## 制作一个 NAND 备份{docsify-ignore} - -如果你在之后做错了什么导致 Wii U 变砖了,恢复 NAND 备份就可以修复它。 - -### 步骤 {docsify-ignore} - -?> Wii U NAND 备份的大小取决于你的设备型号,为 8GB 或 32GB。 为了备份 NAND,你需要准备一张大于你设备 NAND 的 SD 卡。 如果你的 SD 卡没有如此大的空间,你在备份的时候可以选择跳过 `MLC` 部分,其中保存的文件是你的游戏和游戏存档,救砖不需要恢复这些东西。 - -?> 不过恢复 NAND 备份需要额外的设备和一点微焊技能。
但是备份 NAND **是** 为了以防万一,所以不要跳过这些步骤。
你从某一台设备导出的 NAND 备份是那一台设备所独有的。 恢复其他主机的 NAND 备份 **不能救砖**。 - -1. 移动 Homebrew Launcher 至 `Wii U NAND Dumper` 程序并启动。 -1. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **可选** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. 按下 A 键启动导出的进程。 -1. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -1. 确认你的内存卡中有以下文件:`slc.bin`、`slccmpt.bin`、`seeprom.bin`、`otp.bin` 然后将其复制到电脑上。 若你选择了全部备份,则你还需要复制 `所有的 mlc.bin.part` 文件到电脑上。 -1. 从 SD 卡中删除文件来腾出空间。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/haxchi/sd-preparation.md b/translations/zh_CN/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index a8eb93a862c..00000000000 --- a/translations/zh_CN/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD 卡准备 {docsify-ignore} - -我们现在需要把一些 CFW 需要使用到的文件放进你的 SD 卡。 - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 如果你的 SD 卡的格式不是 FAT32,则你需要用 [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) 格式化,格式化时请将分配单元大小设置为 32k(32768)。 **不要**把 SD 卡分区命名为 `wiiu`,这样做会导致出现 homebrew 程序上的问题。 - -### 你需要准备些啥? {docsify-ignore} - -- 最新版 [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest)。 - - 你需要下载 `payload.zip` 文件。 -- 1.4 版的 [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4)。 - - 你需要下载 v1.4 `homebrew_launcher.v1.4.zip` 的 Homebrew Launcher。 -- 最新版 [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip)。 -- 最新版 [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix)。 - - 你需要下载 `homebrew_launcher_channel.v2.1_fix.zip` 文件。 -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- 最新版 [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest)。 - - 你需要下载 `wiiu-extracttosd.zip` 文件。 -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- 最新版 SaveMii Mod。 - -### 步骤 {docsify-ignore} - -?> **注意** info.json 和 manifest.install 文件在破解过程中是不需要的,可以删除。 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. 在 SD 卡根目录下创建一个名为 `install` 的文件夹。 -1. 复制 `homebrew_launcher_channel.v2.1_fix.zip` 里的文件到你创建的 `install` 文件夹。 -1. 复制 `haxchi.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wup_installer_gx2.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `nanddumper.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wiiu-extracttosd.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `homebrew_launcher.v.1.4.zip` 里的文件到你 SD 卡的根目录中。 -1. 复制 `savemii_mod.zip` 里的文件到你的 SD 卡根目录。 -1. 从 `payload.zip` 中解压 `payload.elf` 到 SD 卡根目录下的 `wiiu` 文件夹中。 ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_CN/docs/user-guide/haxchi/sidebar.md b/translations/zh_CN/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 6ee01ef0a92..00000000000 --- a/translations/zh_CN/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [主页](../introduction) -- [选择一个 CFW](../cfw-choice) -- [选择你要用的 DS VC 游戏](ds-vc-choice) -- [SD 卡准备](sd-preparation) -- [浏览器漏洞](browser-exploit) -- [制作一个 NAND 备份](nand-backup) -- [启动 CFW](launching-cfw) -- [安装 Homebrew Channel](installing-hblc) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../donations) -- [关于我们](../about) \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/introduction.md b/translations/zh_CN/docs/user-guide/introduction.md deleted file mode 100644 index dcc04445bf0..00000000000 --- a/translations/zh_CN/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U 破解手册 ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. 请先阅读 **#faq-wiiu** 频道和我们这里的[常见问题](faq)页面来确认你的问题是否已经有解决方法。 - -> 如果你认为这份手册对你很有帮助,请向我们[捐赠](donations)。 - -> 关于其他设备的自制程序和自定义固件完整手册,请见[hacks.guide](https://hacks.guide)。 - -### Homebrew - -Homebrew 是由用户自制的且 Nintendo 没有授权的程序。 包括存档修改器、游戏和模拟器等等。 - -只要你有办法将文件放进 SD 卡就可以破解最新版本的 Wii U。 - -### 自制固件 - -自制固件(也被称为 “CFW”)允许你对设备进行普通的 Homebrew 程序无法做到的更高级的破解。 例如:轻松为游戏安装 Mod。 任何主机在升级到最新版本后都可以安装 CFW。 - -### Homebrew & CFW 可以用来做以下事情 - -除了别的以外它允许你做以下事情: - -- 对你的游戏使用金手指。 -- 为许多游戏备份、修改和还原存档。 -- 使用模拟器来玩旧主机游戏:RetroArch 或者其他独立的模拟器。 -- 玩跨区游戏。 -- 将你的 Wii U 游戏光盘里的游戏转换为可以在 Wii U 内部或外部存储器安装的格式。 - - -### 最终目标 - -本手册的最终目标是将一台原厂 Wii U 破解并使用自制固件。 - -### 开始前准备 - -!> 在开始之前,你必须知道破解 Wii U 的风险:对系统做**任何**的修改都有可能造成**不可恢复的**砖机。 这很罕见但仍有可能发生,所以请你**正确**做好**每一步**操作。 -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> 为了成功地做完本手册,你需要准备以下物品: -> -> - 一张 SD 卡。 -> - 一台能够向 SD 卡存入文件的设备(比如电脑)。 -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -按照本教程给的步骤进行破解不会丢失你的数据(游戏、NNID和存档等等都应会被保存)。 - -在做步骤的时候请将你的主机接上充电器充电,以避免意外关机造成数据丢失或损坏。 - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -请从头开始阅读此手册,完成一项或若干次操作后再继续进行操作步骤。 - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/zh_CN/docs/user-guide/mocha/entrypoint-choice.md b/translations/zh_CN/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 204b6fcde83..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - 选择一个进入方法 - -## 在线漏洞 - -- 每次你想启动 Homebrew Launcher 时都需要连接网络。 - -### [**点击这里继续使用在线漏洞**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- 安装过程中需要连接网络,但安装完成后你就可以脱离网络使用。 -- 需要你修改一个系统文件。 - -### [**点击这里继续使用 Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/zh_CN/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index 2dfda2394ed..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## 浏览器漏洞 {docsify-ignore} - -如要安装 CFW,我们首先需要通过浏览器漏洞来启动 Homebrew Launcher。 请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 步骤 {docsify-ignore} - -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 -1. 启动 Wii U 的浏览器,然后访问 `wiiuexploit.xyz` 网站。 -1. 点击 `Run Homebrew Launcher!`。 然后你的主机应该就启动到 Homebrew Launcher 了。 - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/zh_CN/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index 8361a155e4a..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## 浏览器破解 {docsify-ignore} - -若一切都无误操作,则你就能在之后得到你的 NAND 备份并在系统中运行 Indexiine 了。 - -?> 如果你还没有在复制 NAND 文件到电脑之后将 SD 卡插回 Wii U,请现在就将 SD 卡插回去。 - - -### 步骤 {docsify-ignore} - -1. 打开你的 Wii U。 -1. 启动 Wii U 的浏览器,打开 `wiiuexploit.xyz` 。 -1. 点击 `Run Homebrew Launcher!`。 然后你的主机应该就启动到 Homebrew Launcher 了。 - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 -1. 移动 Homebrew Launcher 至 `Indexiine Installer` 程序并启动。 -1. 按下 A 键安装 Indexiine。 -1. 当进程完成后,请关闭 Homebrew Launcher 来返回你的 Wii U 主菜单。 - -Homebrew Launcher 现在会在打开 Wii U 浏览器时自动启动(即使是没有联网的情况下)。 如果你想使用浏览器访问一个网站,请在 Indexiine 触发漏洞前打开它。 - -?> 如果你想要卸载 Indexiine,请参见[卸载 Indexiine](../../uninstall-indexiine) 页面。 diff --git a/translations/zh_CN/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/zh_CN/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index 111d3e19983..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## 启动 CFW {docsify-ignore} - -与 DSi、Wii 或 3DS 不同的是,Wii U 的 CFW 是临时性的。 这代表在系统重启之后 CFW 就会失效,你必须重复下面的操作才能重新启动 CFW。 你可以选择安装 CBHC 来自动进入 Haxchi CFW 以跳过这些步骤。 - -### 步骤 {docsify-ignore} - -1. 通过 Wii U 浏览器启动 Homebrew Launcher。 -1. 启动 Homebrew Launcher 然后打开 Mocha CFW 程序。 -1. 它将会带你自动回到 Homebrew Launcher 然后启用 CFW。 -1. 在重启主机后你需要重新做这些操作来启动 CFW。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/zh_CN/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index ffbaafcc8e8..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## 制作一个 NAND 备份{docsify-ignore} - -如果你在之后做错了什么导致 Wii U 变砖了,恢复 NAND 备份就可以修复它。 - -### 步骤 {docsify-ignore} - -?> Wii U NAND 备份的大小取决于你的设备型号,为 8GB 或 32GB。 为了备份 NAND,你需要准备一张大于你设备 NAND 的 SD 卡。 如果你的 SD 卡没有如此大的空间,你在备份的时候可以选择跳过 `MLC` 部分,其中保存的文件是你的游戏和游戏存档,救砖不需要恢复这些东西。 - -?> 不过恢复 NAND 备份需要额外的设备和一点微焊技能。
但是备份 NAND **是** 为了以防万一,所以不要跳过这些步骤。
你从某一台设备导出的 NAND 备份是那一台设备所独有的。 恢复其他主机的 NAND 备份 **不能救砖**。 - -1. 移动 Homebrew Launcher 至 `Wii U NAND Dumper` 程序并启动。 -1. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **可选** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. 按下 A 键启动导出的进程。 -1. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -1. 确认你的内存卡中有以下文件:`slc.bin`、`slccmpt.bin`、`seeprom.bin`、`otp.bin` 然后将其复制到电脑上。 若你选择了全部备份,则你还需要复制 `所有的 mlc.bin.part` 文件到电脑上。 -1. 从 SD 卡中删除文件来腾出空间。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/zh_CN/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d61fa3c1917..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD 卡准备 {docsify-ignore} - -我们现在需要把一些 CFW 需要使用到的文件放进你的 SD 卡。 - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 如果你的 SD 卡的格式不是 FAT32,则你需要用 [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) 格式化,格式化时请将分配单元大小设置为 32k(32768)。 **不要**把 SD 卡分区命名为 `wiiu`,这样做会导致出现 homebrew 程序上的问题。 - -### 你需要准备些啥? {docsify-ignore} - -- Mocha 配置文件。 -- 最新版 [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest)。 - - 你需要下载 `payload.zip` 文件。 -- 1.4 版的 [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4)。 - - 你需要下载 v1.4 `homebrew_launcher.v1.4.zip` 的 Homebrew Launcher。 -- 最新版 [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip)。 -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- 最新版 [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest)。 - - 你需要下载 `wiiu-extracttosd.zip` 文件。 -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- 最新版 SaveMii Mod。 -- 最新版 [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest)。 - -### 步骤 {docsify-ignore} - -?> **注意** info.json 和 manifest.install 文件在破解过程中是不需要的,可以删除。 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. 复制 `wup_installer_gx2.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `nanddumper.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wiiu-extracttosd.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `homebrew_launcher.v.1.4.zip` 里的文件到你 SD 卡的根目录中。 -1. 复制 `mocha.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `indexiine-installer.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `savemii_mod.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `config.ini` 到 SD 卡的 `/wiiu/apps/mocha` 文件夹下。 -1. 从 `payload.zip` 中解压 `payload.elf` 到 SD 卡根目录下的 `wiiu` 文件夹中。 ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_CN/docs/user-guide/mocha/indexiine/sidebar.md b/translations/zh_CN/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index 2e9ce9ccdee..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [主页](../../introduction) -- [选择一个 CFW](../../cfw-choice) -- [选择一个进入方法](../entrypoint-choice) -- [SD 卡准备](sd-preparation) -- [浏览器漏洞](browser-exploit) -- [制作一个 NAND 备份](nand-backup) -- [浏览器破解](browser-modding) -- [启动 CFW](launching-cfw) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../../donations) -- [关于我们](../../about) \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/zh_CN/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 43a4027f019..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - 在线漏洞 - -## 浏览器漏洞 {docsify-ignore} - -如要安装 CFW,我们首先需要通过浏览器漏洞来启动 Homebrew Launcher。 请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 步骤 {docsify-ignore} - -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 -1. 启动 Wii U 的浏览器,然后访问 `wiiuexploit.xyz` 网站。 -1. 点击 `Run Homebrew Launcher!`。 然后你的主机应该就启动到 Homebrew Launcher 了。 - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/zh_CN/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index e4cdae73fae..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - 在线漏洞 - -## 启动 CFW {docsify-ignore} - -若一切都无误操作,则你就能在之后得到你的 NAND 备份并在系统中运行 CFW 了。 - -与 DSi、Wii 或 3DS 不同的是,Wii U 的 CFW 是临时性的。 这代表在系统重启之后 CFW 就会失效,你必须重复下面的操作才能重新启动 CFW。 你可以选择安装 CBHC 来自动进入 Haxchi CFW 以跳过这些步骤。 - -### 步骤 {docsify-ignore} - -1. 将内存卡从电脑上拔出并插回 Wii U。 -1. 按照[先前](browser-exploit)的方法在你的系统中启动 Homebrew Launcher。 -1. 启动 Homebrew Launcher 然后打开 Mocha CFW 程序。 -1. 它将会带你自动回到 Homebrew Launcher 然后启用 CFW。 -1. 在重启主机后你需要重新做这些操作来启动 CFW。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/zh_CN/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index c973d7b1de9..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - 在线漏洞 - -## 制作一个 NAND 备份{docsify-ignore} - -如果你在之后做错了什么导致 Wii U 变砖了,恢复 NAND 备份就可以修复它。 - -### 步骤 {docsify-ignore} - -?> Wii U NAND 备份的大小取决于你的设备型号,为 8GB 或 32GB。 为了备份 NAND,你需要准备一张大于你设备 NAND 的 SD 卡。 如果你的 SD 卡没有如此大的空间,你在备份的时候可以选择跳过 `MLC` 部分,其中保存的文件是你的游戏和游戏存档,救砖不需要恢复这些东西。 - -?> 不过恢复 NAND 备份需要额外的设备和一点微焊技能。
但是备份 NAND **是** 为了以防万一,所以不要跳过这些步骤。
你从某一台设备导出的 NAND 备份是那一台设备所独有的。 恢复其他主机的 NAND 备份 **不能救砖**。 - -1. 移动 Homebrew Launcher 至 `Wii U NAND Dumper` 程序并启动。 -1. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **可选** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. 按下 A 键启动导出的进程。 -1. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -1. 确认你的内存卡中有以下文件:`slc.bin`、`slccmpt.bin`、`seeprom.bin`、`otp.bin` 然后将其复制到电脑上。 若你选择了全部备份,则你还需要复制 `所有的 mlc.bin.part` 文件到电脑上。 -1. 从 SD 卡中删除文件来腾出空间。 \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/zh_CN/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index 19c34c2b399..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - 在线漏洞 - -## SD 卡准备 {docsify-ignore} - -我们现在需要把一些 CFW 需要使用到的文件放进你的 SD 卡。 - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 如果你的 SD 卡的格式不是 FAT32,则你需要用 [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) 格式化,格式化时请将分配单元大小设置为 32k(32768)。 **不要**把 SD 卡分区命名为 `wiiu`,这样做会导致出现 homebrew 程序上的问题。 - -### 你需要准备些啥? {docsify-ignore} - -- Mocha 配置文件。 -- 最新版 [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest)。 - - 你需要下载 `payload.zip` 文件。 -- 1.4 版的 [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4)。 - - 你需要下载 v1.4 `homebrew_launcher.v1.4.zip` 的 Homebrew Launcher。 -- 最新版 [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip)。 -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- 最新版 [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest)。 - - 你需要下载 `wiiu-extracttosd.zip` 文件。 -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- 最新版 SaveMii Mod。 - -### 步骤 {docsify-ignore} - -?> **注意** info.json 和 manifest.install 文件在破解过程中是不需要的,可以删除。 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. 复制 `wup_installer_gx2.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `nanddumper.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `wiiu-extracttosd.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `homebrew_launcher.v.1.4.zip` 里的文件到你 SD 卡的根目录中。 -1. 复制 `mocha.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `savemii_mod.zip` 里的文件到你的 SD 卡根目录。 -1. 复制 `config.ini` 到 SD 卡的 `/wiiu/apps/mocha` 文件夹下。 -1. 从 `payload.zip` 中解压 `payload.elf` 到 SD 卡根目录下的 `wiiu` 文件夹中。 ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_CN/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/zh_CN/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index 9ff2db763a2..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - 在线漏洞** -- [主页](../../introduction) -- [选择一个 CFW](../../cfw-choice) -- [选择一个进入方法](../entrypoint-choice) -- [SD 卡准备](sd-preparation) -- [浏览器漏洞](browser-exploit) -- [制作一个 NAND 备份](nand-backup) -- [启动 CFW](launching-cfw) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../../donations) -- [关于我们](../../about) \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/mocha/sidebar.md b/translations/zh_CN/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index eef352d45dd..00000000000 --- a/translations/zh_CN/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [主页](../introduction) -- [选择一个 CFW](../cfw-choice) -- [选择一个进入方法](entrypoint-choice) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../donations) -- [关于我们](../about) \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/tiramisu/autoboot.md b/translations/zh_CN/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index 7ad46a83afd..00000000000 --- a/translations/zh_CN/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### 操作步骤 - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/zh_CN/docs/user-guide/tiramisu/browser-exploit.md b/translations/zh_CN/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index b7cbbf7c834..00000000000 --- a/translations/zh_CN/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## 浏览器漏洞 - -请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 操作步骤 - -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 -1. 启动 Wii U 的浏览器,然后访问 `wiiuexploit.xyz` 网站。 -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/zh_CN/docs/user-guide/tiramisu/finalizing-setup.md b/translations/zh_CN/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 563c0709225..00000000000 --- a/translations/zh_CN/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. 打开你的 Wii U。 - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/zh_CN/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/zh_CN/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index d03b753d55c..00000000000 --- a/translations/zh_CN/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### 操作步骤 - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. 将内存卡从电脑上拔出并插回 Wii U。 -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/zh_CN/docs/user-guide/tiramisu/nand-backup.md b/translations/zh_CN/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 4115724fcd3..00000000000 --- a/translations/zh_CN/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## 制作一个 NAND 备份 - -如果你在之后做错了什么导致 Wii U 变砖了,恢复 NAND 备份就可以修复它。 - -### 操作步骤 - -?> Wii U NAND 备份的大小取决于你的设备型号,为 8GB 或 32GB。 为了备份 NAND,你需要准备一张大于你设备 NAND 的 SD 卡。 如果你的 SD 卡没有如此大的空间,你在备份的时候可以选择跳过 `MLC` 部分,其中保存的文件是你的游戏和游戏存档,救砖不需要恢复这些东西。 - -?> 不过恢复 NAND 备份需要额外的设备和一点微焊技能。
但是备份 NAND **是** 为了以防万一,所以不要跳过这些步骤。
你从某一台设备导出的 NAND 备份是那一台设备所独有的。 恢复其他主机的 NAND 备份 **不能救砖**。 - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **可选** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. 按下 A 键启动导出的进程。 -1. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. 从 SD 卡中删除文件来腾出空间。 - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/zh_CN/docs/user-guide/tiramisu/sd-preparation.md b/translations/zh_CN/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index edff6a5cb63..00000000000 --- a/translations/zh_CN/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD 卡准备 - -我们现在需要把一些 CFW 需要使用到的文件放进你的 SD 卡。 - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 如果你的 SD 卡的格式不是 FAT32,则你需要用 [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) 格式化,格式化时请将分配单元大小设置为 32k(32768)。
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### 你需要准备点啥? - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### 操作步骤 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/zh_CN/docs/user-guide/tiramisu/sidebar.md b/translations/zh_CN/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 30d068e3235..00000000000 --- a/translations/zh_CN/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [主页](../introduction) -- [SD 卡准备](sd-preparation) -- [浏览器漏洞](browser-exploit) -- [制作一个 NAND 备份](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../donations) -- [关于我们](../about) diff --git a/translations/zh_CN/docs/user-guide/vwii/browser-exploit.md b/translations/zh_CN/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 35133899591..00000000000 --- a/translations/zh_CN/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -请确保你的 Wii U 在做到这里之前可以连接到互联网。 - -### 步骤 {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - 如果你的 Wii U 卡住不动或白屏了,请等一会。 如果什么都没有发生,那就重启主机后[重置浏览器保存的数据](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history),然后再来一次。 - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/zh_CN/docs/user-guide/vwii/finalizing-setup.md b/translations/zh_CN/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/zh_CN/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/zh_CN/docs/user-guide/vwii/installing-cioses.md b/translations/zh_CN/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index 73ec92fcd11..00000000000 --- a/translations/zh_CN/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## 安装 cIOS - -1. 将 Wii U 开机,然后启动 vWii。 -2. 启动 Homebrew Channel。 -3. 启动 d2x cIOS Installer。 -4. 设定以下选项: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. 设定以下选项: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. 设定以下选项: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/zh_CN/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/zh_CN/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/zh_CN/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/zh_CN/docs/user-guide/vwii/nand-backup.md b/translations/zh_CN/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index b1e5cdecbae..00000000000 --- a/translations/zh_CN/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND 备份 - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. 按下 A 键启动导出的进程。 -4. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. 从 SD 卡中删除文件来腾出空间。 -7. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 diff --git a/translations/zh_CN/docs/user-guide/vwii/patching-ios80.md b/translations/zh_CN/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 84e2eb66a3c..00000000000 --- a/translations/zh_CN/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. 启动 vWii 的 Patched IOS 80 Installer。 -2. 阅读警告信息并等待 30 秒。 -3. 按下任意键来安装。 -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/zh_CN/docs/user-guide/vwii/sd-preparation.md b/translations/zh_CN/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 4a086cdf566..00000000000 --- a/translations/zh_CN/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -此页将会教你如何修改 vWii。 - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### 你需要准备点啥? - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## 操作步骤 - -1. 将你的 Wii U SD 卡 插入你的电脑。 -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 diff --git a/translations/zh_CN/docs/user-guide/vwii/sidebar.md b/translations/zh_CN/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index 77882c96c99..00000000000 --- a/translations/zh_CN/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii 修改** -- [主页](../introduction) -- [Modding vWii](vwii-modding) -- **链接** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![帮助我们翻译手册](https://icongr.am/material/translate.svg?color=808080&size=16)帮助我们翻译手册](https://hacks-guide.crowdin.com/u/projects/10) -- [捐赠](../donations) -- [关于我们](../about) diff --git a/translations/zh_CN/docs/user-guide/vwii/vwii-modding.md b/translations/zh_CN/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/zh_CN/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/zh_CN/docs/vwii/vwii-modding.md b/translations/zh_CN/docs/vwii/vwii-modding.md deleted file mode 100644 index 7ba0a9a9652..00000000000 --- a/translations/zh_CN/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii 破解教程 ---- -此页将会教你如何修改 vWii。 - -We will now start by placing the required Homebrew files on the SD Card. - -?> **注意** 你的 SD 卡需要被格式化为 FAT32。 如果你的 SD 卡的格式不是 FAT32,则你需要用 [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) 格式化,格式化时请将分配单元大小设置为 32k(32768)。 **不要**把 SD 卡分区命名为 `wiiu`,这样做会导致出现 homebrew 程序上的问题。 - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### 你需要准备些啥? {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. 将你的 Wii U SD 卡 插入你的电脑。 -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 - -### NAND 备份 - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. 使用 Wii U 游戏手柄上的十字键来配置以下内容: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **可选** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. 按下 A 键启动导出的进程。 -1. 当完成后,将 Wii U 关机,然后把 SD 卡从 Wii U 上拔出并插入电脑。 -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. 从 SD 卡中删除文件来腾出空间。 -1. 把 SD 卡从电脑中弹出并插入 Wii U 主机。 - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### 安装 cIOS - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. 将 Wii U 开机,然后启动 vWii。 -1. 启动 Homebrew Channel。 -1. 启动 d2x cIOS Installer。 -1. 设定以下选项: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. 按下 `A` 键来安装。 -1. 设定以下选项: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. 按下 `A` 键来安装。 -1. 设定以下选项: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. 按下 `A` 键来安装。 -1. 按下 `B` 键来退出。 - -### 为 IOS 80 打补丁 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. 启动 vWii 的 Patched IOS 80 Installer。 -1. 阅读警告信息并等待 30 秒。 -1. 按下任意键来安装。 -1. 等一会,直到它提示 IOS80 Installation is complete!。 -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/zh_TW/docs/extras/about.md b/translations/zh_TW/docs/extras/about.md deleted file mode 100644 index 7f407ea968f..00000000000 --- a/translations/zh_TW/docs/extras/about.md +++ /dev/null @@ -1,60 +0,0 @@ -# About This Guide ---- -This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh) - -> **Credits** -> -> **Elpunical, FlimFlam69, Flump, GaryOderNichts, Hiperhazz, huhen, ihaveahax/ihaveamac, Lazr1026, Link5261, Maschell, Nightkingale, Plailect, Profanity, and redcubie.** -> -> Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/contributors) that contributed to the guide on GitHub. - -?> [You can find this guide on GitHub](https://github.com/hacks-guide/Guide-WiiU), It is licensed under the [ISC License](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md). - -
- Nintendo Homebrew -
- -> -> **Developer / Tool Credits** -> -> - **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule). -> -> - **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair). -> -> - **dragbe** and **FIX94** for d2x cIOS Installer. -> -> - **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app). -> -> - The **Docsify team** for [docsify.js](https://github.com/docsifyjs/docsify/). -> -> - **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable). -> -> - **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and Tiramisu/Aroma. -> -> - **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi). -> -> - **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha). -> -> - **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer). -> -> - **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore). -> -> - **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/). -> -> - **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax). -> -> - **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for Patched IOS80 Installer for vWii. -> -> - **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii) -> -> - **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/). -> -> - **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper). -> -> - **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload). -> -> - **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py). -> -> - **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer). -> -> - **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU) diff --git a/translations/zh_TW/docs/extras/block-updates.md b/translations/zh_TW/docs/extras/block-updates.md deleted file mode 100644 index 544d4826b05..00000000000 --- a/translations/zh_TW/docs/extras/block-updates.md +++ /dev/null @@ -1,14 +0,0 @@ -# Blocking Updates ---- -All currently known Wii U exploits can, unlike e.g. the Nintendo Switch RCM exploit, be patched by a system update. Although the Wii U is no longer officially supported, Nintendo may still release updates for it. Namely, the updates 5.5.3 up to 5.5.6 were all released after the Wii U was discontinued, so blocking updates is still a recommended action. - -While Aroma's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a yellow warning screen while booting into Aroma, the update folder still exists and it is recommended to delete it using the guide below. - -### Instructions {docsify-ignore} - -Currently, one way exists to effectively block updates on the Wii U system: - -1. Make sure you have the latest Aroma beta. -1. Boot into Aroma. - - If you got the yellow warning screen, press X to block updates. - - If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked. diff --git a/translations/zh_TW/docs/extras/configurable-payload.md b/translations/zh_TW/docs/extras/configurable-payload.md deleted file mode 100644 index 3068e9e1c83..00000000000 --- a/translations/zh_TW/docs/extras/configurable-payload.md +++ /dev/null @@ -1,22 +0,0 @@ -# Configurable Payload ---- -This payload is configurable, similar to Haxchi's configuration. This could be very useful for Mocha users, as it saves a bit of time having to launch Mocha through the Homebrew Launcher. - -### What You Need {docsify-ignore} - -- The configurable payload. -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - -### Instructions {docsify-ignore} - -1. Extract the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder on the root of your SD Card. -1. Place the SD Card into your Wii U and launch the [Homebrew Launcher](mocha/online-exploit/browser-exploit). -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Select `Homebrew Launcher Channel`. Press `Install` and install to NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the HOME Button until you're back at the Wii U Menu. -1. At this point the channel will not launch as it will conflict with the version running on SD Card you were just using. Restart the Wii U. -1. Eject the SD Card from your Wii U and insert it into your computer. -1. Extract the `Configurable_Payload.zip` file to the root of your SD Card. If it prompts you to overwrite the files on your SD Card, do so. -1. Place the SD Card into your Wii U and launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. If everything has been done correctly, you should be taken back to the Wii U Menu. Mocha has now been enabled and you can use the Homebrew Launcher Channel you installed earlier. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. diff --git a/translations/zh_TW/docs/extras/donations.md b/translations/zh_TW/docs/extras/donations.md deleted file mode 100644 index b72cd38fc6c..00000000000 --- a/translations/zh_TW/docs/extras/donations.md +++ /dev/null @@ -1,8 +0,0 @@ -# Donations {docsify-ignore-all} ---- -> [![Paypal](https://raw.githubusercontent.com/hacks-guide/Guide-WiiU/master/docs/assets/img/paypal_white.png#center)](https://paypal.me/NintendoHomebrew) - -
- https://paypal.me/NintendoHomebrew -
- diff --git a/translations/zh_TW/docs/extras/dump-games.md b/translations/zh_TW/docs/extras/dump-games.md deleted file mode 100644 index 8bec5d7d1a2..00000000000 --- a/translations/zh_TW/docs/extras/dump-games.md +++ /dev/null @@ -1,67 +0,0 @@ -# Dumping Wii U Discs ---- -Dumping your Discs allows you to install a copy of your game to the system NAND/a USB device so you can play it without needing the disc. - -?> Dumping and installing games requires a working Homebrew setup, so make sure to finish the main guide on installing CFW first before following this. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### Dumping and Installing Wii U Discs {docsify-ignore} - -?> Installing a game to the system memory (NAND) is not recommended as it's limited to either 8GB or 32GB depending on your model, making you run out of space pretty quickly if you want to install multiple games. - -?> When installing a game to a USB device, we recommend that you use an HDD and not a flash drive, as those are not optimized for constant reading and writing, therefore making them fail quickly. If your HDD is not externally powered, you will need a Y-cable to connect it to two USB slots on the Wii U. - -!> In order to install to a USB device, it has to be formatted by the Wii U. Doing this will erase (delete) all contents (documents, pictures, videos, PC data) off of it, and prevent it from being used on another system unless you reformat it. This *does* include the vWii, meaning you will not be able to run Wii and GameCube disc images off the USB using USB loaders. To format, plug your USB HDD into the Wii U, power on your Wii U, your Wii U will prompt you to format your HDD. Confirm with Yes. - -#### What You Need {docsify-ignore} - -- Your SD Card needs to have enough space to fit the game you want to dump. -- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed). -- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip). -- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application. - -#### Instructions {docsify-ignore} - -1. Copy the contents of the `wup_installer_gx2_wuhb.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded wudd `.zip` file to the root of your SD Card. -1. Take the SD Card out of your PC and insert it into your Wii U. -1. Power on your Wii U and boot into Aroma. -1. Launch the Wii U Menu and start the wudd app. -1. Select `Dump partition as .app` -1. Select the `Game` partition to start dumping. -1. When finished, exit wudd to the Wii U Menu. -1. Insert the SD Card into your computer. -1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on your SD Card. - - If the `install` folder does not exist, create it. -1. Eject and insert the SD Card into your Wii U. -1. Open the Wii U Menu and then the WUP Installer GX2 app. -1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`. -1. Choose 'USB' to install to USB and 'NAND' to install to NAND -1. Exit the WUP Installer GX2 to the Wii U Menu. -1. You should see your game installed, ready to be played. -1. Take the SD Card out of your Wii U and plug it into your PC. -1. Delete the `GMXXXXXXXXXXXXXXXX` folder in the `install` directory on your SD Card to free up space. - -### Moving Games To USB - -?> If you don't want to keep the game installed on NAND, you can use the Wii U's data management to move the game to a USB device. - -!> In order to move your game to a USB device, it has to be formatted by the Wii U. Doing this will erase all contents of it, and prevent it from being used on another system unless you reformat it. - -1. Plug your USB device into the Wii U. -1. Power on your Wii U. -1. Your Wii U will prompt you to format your USB device. Confirm with Yes. -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)` -1. Select the game and move all data (including updates and DLC if any are installed) to your USB device. - -### Move Updates To USB - -?> If your disc game had DLC or updates installed, you will need to transfer the files over to your USB device. You can do this using the Wii U's data management. - -1. Power on your Wii U -1. Open the Wii U's System Settings. -1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`. -1. Select your game and move the update and DLC data to the USB device. diff --git a/translations/zh_TW/docs/extras/dump-wii-games.md b/translations/zh_TW/docs/extras/dump-wii-games.md deleted file mode 100644 index 1c5e44ab8bd..00000000000 --- a/translations/zh_TW/docs/extras/dump-wii-games.md +++ /dev/null @@ -1,58 +0,0 @@ -# Dumping Wii Discs ---- -Dumping your Discs allows you to: play them on a Wii emulator (namely Dolphin), play them using a USB/SD Card loader such as Wiiflow, make Virtual Console injects that can be installed on a Wii U formatted USB drive or the NAND and launched from the Wii U Menu. - -?> Dumping Wii games requires a working homebrew setup on vWii, so make sure to finish the [vWii Modding guide](vwii/sd-preparation) beforehand. - -!> It is **ILLEGAL** to share the files dumped with this guide. -If you intend to use this guide to share your dumped games, don't. - -### What You Need {docsify-ignore} - -1. The latest release of [CleanRip](https://github.com/emukidid/cleanrip/releases/download/2.1.1/CleanRip-v2.1.1.zip). -1. The [wii.dat](https://github.com/emukidid/cleanrip/releases/download/2.1.1/wii.dat) file. - -### Instructions {docsify-ignore} - -1. Insert your Wii U's SD Card into your computer. -1. Copy the `apps` folder from the `CleanRip-v2.1.1.zip` file to the root of your SD Card. -1. Copy the `wii.dat` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Dumping The Disc - -1. Turn on your Wii U then choose the Wii Menu icon to boot up in vWii. -1. Launch the Homebrew Channel. -1. Launch CleanRip. -1. Read the Disclaimer then press A. -1. Select Yes to enable Checksum Calculations. -1. Select either USB or Front SD depending on which device you want to use for the dumping process. - - Please note that the device you choose needs to be formatted either in FAT32 or NTFS. -1. Press A to continue. -1. Select No on the screen that asks you to download redump.org DAT files. -1. Insert your disc then press A. -1. Go [on this page](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your disc is dual-layered. -1. Set everything to match the following: - - Dual Layer: `Yes/No` (Select `Yes` if your game's disc is dual-layered) - - Chunk Size: `Max` - - New device per chunk: `No` -1. If you want to dump multiple discs, select Yes to remember your settings. If not, select No. - -?> Be prepared to wait a while. The dumping process can take 30 minutes to 1 hour depending on your SD Card's speeds. - -### Joining Split Files - -?> If you dumped the disc on a FAT32 formatted device, you should've got at least 2 files that end with `.partX.iso`. They need to be joined up. - -#### Windows {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Right-click inside the folder while holding Shift and select `Open PowerShell Window Here`. -1. In the PowerShell window, run the following command as is: `cmd.exe /c "copy /b *.part?.iso game.iso"`. - -#### macOS/Linux {docsify-ignore} - -1. Copy all the files that share the same name and end with `.partX.iso` in a folder on your computer. -1. Open up a Terminal. -1. Use the `cd ` command and replace `` by the path to your `.partX.iso` files. -1. Use the following command as is: `cat *.part?.iso > game.iso`. diff --git a/translations/zh_TW/docs/extras/faq.md b/translations/zh_TW/docs/extras/faq.md deleted file mode 100644 index 0a57dfb3ed2..00000000000 --- a/translations/zh_TW/docs/extras/faq.md +++ /dev/null @@ -1,46 +0,0 @@ -# Frequently Asked Questions {docsify-ignore-all} ---- - -### Does homebrew have any risks? - -Currently, homebrewing the Wii U does not expose you to a risk of being banned by Nintendo unless you cheat in online games, or do eShop fraud. You should, however, always be careful with launching downloaded homebrew, especially if you don't trust the source, as homebrew can potentially damage your system! - -### What are exploits? - -Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew. - -### What are payloads? - -Payloads, which are normally found with the filename `payload.elf`, exist to make it easier to have different exploits load the same next stage, which allows easier updateability. It doesn't matter what exploit loads the payload, the result is always the same. Multiple payloads can be switched between using the PayloadLoaderPayload. The payload used in the main guide is CustomRPXLoader which loads `SD:/wiiu/payload.rpx` and the `payload.rpx` used in the guide is EnvironmentLoader, which allows you to load different environments. - -### What are environments? - -An environment is a collection of "setup modules", which will be run in a certain order when launching the environment. Such environments are Aroma and Tiramisu. Setup modules are small pieces of homebrew/code that are executed once to set up an environment. - -### How to Delete Update Folder to Block Updates on Wii U - -If you want to delete the update folder to block updates, see its tab in the [Blocking Updates guide](block-updates). - -### What SD Card size is recommended? - - - **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size) - - **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods) - - **Only running homebrew apps:** Any size. - -**Recommended brands:** SanDisk, Samsung or PNY - -?> Note: Avoid class 4 SD Cards, and avoid eBay! - -### Can I install homebrew on Wii U with a USB instead of SD Card? - -No, you must have an SD Card for a first time setup. A USB can then be used to install game backups, Virtual Console injects, etc, but not to store homebrew applications which are required to set everything up. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, and therefore, won't have any impact by being or not being there. - -### What is a Wii U formatted USB drive? - -It's a USB drive that has been formatted by a Wii U console to its proprietary format. -A Wii U formatted USB drive ***cannot be read by any other devices than the Wii U that originally formatted it.*** -If you ever want to use it with another Wii U console or any other devices, you will have to reformat it. diff --git a/translations/zh_TW/docs/extras/find-wiiu-ip-address.md b/translations/zh_TW/docs/extras/find-wiiu-ip-address.md deleted file mode 100644 index 3fce4f4227a..00000000000 --- a/translations/zh_TW/docs/extras/find-wiiu-ip-address.md +++ /dev/null @@ -1,15 +0,0 @@ -# How To Find The IP Address of your Wii U ---- -Quick guide on how to find the IP address of your Wii U console. - -### What You Need - -1. The latest release of [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu). - - Extract the `ftpiiu.zip` file to the root of your SD Card. - -### Instructions - -1. Launch the Homebrew Launcher. -1. Launch FTPiiU. -1. The IP address of your Wii U will be displayed at the bottom of the screen. -1. To exit FTPiiU, press the HOME button. \ No newline at end of file diff --git a/translations/zh_TW/docs/extras/unblock-updates.md b/translations/zh_TW/docs/extras/unblock-updates.md deleted file mode 100644 index b30e80b1e6c..00000000000 --- a/translations/zh_TW/docs/extras/unblock-updates.md +++ /dev/null @@ -1,40 +0,0 @@ -# Unblocking Updates ---- -This is needed if you ever need to perform a System Update. - -?> If you are running Aroma and have deleted the update folder, you need to disable both autobooting and recreate the update folder. - -### Instructions {docsify-ignore} - - - -#### **Removing Aroma Autoboot** - -### Removing Aroma Autoboot - -?> When autobooting into the PayloadLoader, updates are automatically blocked. Follow the guide below to disable it. - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. Perform the System Update. -1. Follow [this](../docs/user-guide/aroma/autoboot) to re-enable autobooting. - -#### **Recreating Update Folder** - -### Recreating Update Folder - -1. Make sure you have the latest Aroma beta. -1. Boot Aroma while holding + (Plus). -1. Hold + (Plus) **and** - (Minus) until it says "Updates not blocked!". - -#### **Removing DNS Blocks** - -### Removing DNS Blocks - -1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >` `Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`. -1. You are no longer blocking system updates. - - diff --git a/translations/zh_TW/docs/extras/uninstall-cbhc.md b/translations/zh_TW/docs/extras/uninstall-cbhc.md deleted file mode 100644 index f1cf3cb279e..00000000000 --- a/translations/zh_TW/docs/extras/uninstall-cbhc.md +++ /dev/null @@ -1,14 +0,0 @@ -# Uninstall CBHC ---- -This page will guide through the process of uninstalling CBHC from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch CBHC Installer. -1. Select the DS Virtual Console game you want to uninstall CBHC from then press the `A` button. -1. Read the warnings then press the `B` button. -1. Check that your Wii U no longer autoboots to CBHC by rebooting the console. -1. If no autobooting or menu screen appreared when the console was booting up, you can launch System Settings then go to Data Management and then safely uninstall the application called `DON'T TOUCH ME`. - -?> If you receive a pop-up stating, "A system-memory error has occurred. Turn off the console, and then try again." while deleting the `DON'T TOUCH ME` application, restart the system and try to delete the application again. **Please** make sure you followed all above steps before deleting the application. \ No newline at end of file diff --git a/translations/zh_TW/docs/extras/uninstall-indexiine.md b/translations/zh_TW/docs/extras/uninstall-indexiine.md deleted file mode 100644 index 2cda471e844..00000000000 --- a/translations/zh_TW/docs/extras/uninstall-indexiine.md +++ /dev/null @@ -1,10 +0,0 @@ -# Uninstall Indexiine ---- -This page will guide through the process of uninstalling Indexiine from your Wii U. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher. -1. Launch Indexiine-Installer. -1. Press the B button to uninstall Indexiine. -1. Check that your Wii U no longer automatically launches the Homebrew Launcher upon entering the Internet browser. diff --git a/translations/zh_TW/docs/extras/uninstall-payloadloader.md b/translations/zh_TW/docs/extras/uninstall-payloadloader.md deleted file mode 100644 index c776fd070b5..00000000000 --- a/translations/zh_TW/docs/extras/uninstall-payloadloader.md +++ /dev/null @@ -1,30 +0,0 @@ -# Uninstall PayloadLoader ---- -This page will guide through the process of uninstalling the PayloadLoader from your Wii U. - -!> A factory reset **won't** uninstall the injected PayloadLoader. To fully uninstall it, follow this guide. - -### What You Need {docsify-ignore} - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - 1. Scroll down to the **Download** section. - 1. Read through the steps and click on the checkboxes. - 1. Click on `Download Payloads` and `Download Base Aroma`. - -### Undo Autobooting into PayloadLoader - -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch back to Wii U Menu`. -1. When the process finished, press A to shutdown the console. -1. The console will now boot again into the Wii U Menu. The PayloadLoader can still be launched by launching the Health & Safety Application. - -### Uninstall PayloadLoader - -1. Launch the Health & Safety Application and boot into Aroma. -1. Launch the PayloadLoader Installer from the Wii U Menu. -1. Press A to select `Check`. -1. Select `Remove`. -1. You will be asked if you really want to remove the PayloadLoader. Select `Remove` again. -1. When the process finished, press A to shutdown the console. diff --git a/translations/zh_TW/docs/privacy/privacy-policy.md b/translations/zh_TW/docs/privacy/privacy-policy.md deleted file mode 100644 index ee3de21892a..00000000000 --- a/translations/zh_TW/docs/privacy/privacy-policy.md +++ /dev/null @@ -1,73 +0,0 @@ -# PRIVACY NOTICE {docsify-ignore-all} - -**Last updated January 18, 2020** - - -Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com. - -When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services. - -This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**"). - -**Please read this privacy policy carefully.** - - -## TABLE OF CONTENTS - -[1. WHAT INFORMATION DO WE COLLECT?](privacy-policy?id=_1-what-information-do-we-collect) - -[2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?](privacy-policy?id=_2-do-we-use-cookies-and-other-tracking-technologies) - -[3. WHAT ARE YOUR PRIVACY RIGHTS?](privacy-policy?id=_3-what-are-your-privacy-rights) - -[4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?](privacy-policy?id=_4-do-california-residents-have-specific-privacy-rights) - -[5. DO WE MAKE UPDATES TO THIS POLICY?](privacy-policy?id=_5-do-we-make-updates-to-this-policy) - -[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) - - - -### 1. WHAT INFORMATION DO WE COLLECT? :id=_1-what-information-do-we-collect - -***In Short:*** *We do not collect any personal information.* - -We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement) - - -### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES :id=_2-do-we-use-cookies-and-other-tracking-technologies -***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.* - -We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. - - -### 3. WHAT ARE YOUR PRIVACY RIGHTS? :id=_3-what-are-your-privacy-rights - -***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.* - -In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the [contact details](privacy-policy?id=_6-how-can-you-contact-us-about-this-policy) provided below. We will consider and act upon any request in accordance with applicable data protection laws. - -If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal. - -If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm - - -### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? :id=_4-do-california-residents-have-specific-privacy-rights - -***In Short:*** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.* - -California Civil Code Section 1798.83, also known as the “Shine The Light” law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below. - -If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems. - - -### 5. DO WE MAKE UPDATES TO THIS POLICY? :id=_5-do-we-make-updates-to-this-policy - -***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.* - -We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information. - - -### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY? :id=_6-how-can-you-contact-us-about-this-policy - -If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com \ No newline at end of file diff --git a/translations/zh_TW/docs/sidebar.md b/translations/zh_TW/docs/sidebar.md deleted file mode 100644 index 5a7b953812e..00000000000 --- a/translations/zh_TW/docs/sidebar.md +++ /dev/null @@ -1,29 +0,0 @@ -- **User Guide** -- [Introduction](introduction) -- [Aroma](aroma/getting-started) -- [vWii Modding](vwii/vwii-modding) -- **Troubleshooting** -- [Common Issues & Fixes](common-issues-fixes) -- [Recover a vWii IOS/Channel](recover-vwii-ioses-channels) -- **Extras** -- [Blocking Updates](block-updates) -- [Unblocking Updates](unblock-updates) -- [Dumping Wii U Discs](dump-games) -- [Dumping Wii Discs](dump-wii-games) -- [Uninstall CBHC](uninstall-cbhc) -- [Uninstall Indexiine](uninstall-indexiine) -- [Uninstall Payloadloader](uninstall-payloadloader) -- [Frequently Asked Questions](faq) -- **Archive** -- [Tiramisu](archive/tiramisu/sd-preparation) -- [Legacy Methods](archive/cfw-choice) -- [Configurable Payload](configurable-payload) -- [vWii Modding](archive/vwii/sd-preparation) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](donations) -- [About](about) -- **Privacy** -- [Privacy Policy](privacy-policy) diff --git a/translations/zh_TW/docs/troubleshooting/common-issues-fixes.md b/translations/zh_TW/docs/troubleshooting/common-issues-fixes.md deleted file mode 100644 index f36d8524ae2..00000000000 --- a/translations/zh_TW/docs/troubleshooting/common-issues-fixes.md +++ /dev/null @@ -1,42 +0,0 @@ -# Common Issues & Fixes {docsify-ignore-all} ---- -### Haxchi common errors - - - **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing into the SD slot as it can get dusty inside. - - - **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition. - - - **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in /wiiu/apps/homebrew_launcher/homebrew_launcher.elf. - -### Browser errors - - - **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3. - - - **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root. - - - **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the /wiiu/apps/homebrew_launcher folder. - - - **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues. - -### Data Management asks to delete unnecessary data, what does it mean? - -This refers to leftover files from incomplete installs. Always choose Yes to delete this data, as it takes up space for no good reason. If it ever stays stuck on deleting the data in an infinite loop, you can manually delete the data yourself. -Use FTPiiU Everywhere and browse to `/storage_mlc/usr/import` then delete any files in the folder if any exists. This is where the partial installs exist after incomplete installs. It'll be `/storage_usb/usr/import` if installed to a USB. -The `import` folder should always be kept empty. - -### My HDD doesn't work or makes a weird clicking sound, what should I do? - -The reason behind that is that the Wii U doesn't give enough power through one USB port to use the Hard Drive. - -You can fix this by either using a powered HDD or using a Y-Cable to connect the HDD to two USB ports. - -If your HDD worked for some time and then stopped working for some games/all games, it is the same issue and can be fixed with the same methods. - -### When extracting some of the files there are duplicates of certain ones called "info.json" & "manifest.install", what do I do with those? - -Nothing special, you can leave them there, delete them or replace them with new ones. Those files are not used in the process, therefore, won't have any impact by being or not being there. - -### My console suddenly lost online connectivity and I have an HDD sitting on top of the console, what should I do? - -The internal antenna may have been influenced by the hard drive magnet. -You can move the HDD to a different position atop the Wii U, or move it off the Wii U entirely. diff --git a/translations/zh_TW/docs/troubleshooting/fix-errcode-112-1037.md b/translations/zh_TW/docs/troubleshooting/fix-errcode-112-1037.md deleted file mode 100644 index bce0e7faeb7..00000000000 --- a/translations/zh_TW/docs/troubleshooting/fix-errcode-112-1037.md +++ /dev/null @@ -1,60 +0,0 @@ -# How To Fix The Error Code 112-1037 ---- -This page will guide you through the process of fixing the error code 112-1037. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction). -- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click Save).** -- The latest release of [Python](https://www.python.org/downloads/). - -### Instructions {docsify-ignore} - -1. Install Python on your computer. - -### Fixing The Error Code - - - -#### **Windows** - -### Windows - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a command prompt window. -1. Use the following command: `cd `. - - Example: cd C:\Users\username\Downloads. -1. Use the following command: `py -3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - -#### **macOS & Linux** - -### macOS & Linux - -1. Power on your Wii U. -1. Launch the Homebrew Launcher and launch Mocha. -1. Go back to the Wii U Menu. -1. Open up a Terminal window. -1. Use the following command: `cd `. - - On macOS, the most common place to find your downloaded files is /Users/username/Downloads. - - On Linux, the most common place to find your downloaded files is /home/username/Downloads. -1. Use the following command: `python3 -i wupclient.py`. -1. Enter the IP address of your Wii U. - - Don't know how to find it? Read [this](find-wiiu-ip-address). -1. Use the appropriate command depending on the region of your console: - - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644). - - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644). - - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644). -1. If the command worked, you will get the following response: `chmod returned 0x0`. -1. The error code should now be gone. - - \ No newline at end of file diff --git a/translations/zh_TW/docs/troubleshooting/recover-vwii-ioses-channels.md b/translations/zh_TW/docs/troubleshooting/recover-vwii-ioses-channels.md deleted file mode 100644 index d97460c2dfc..00000000000 --- a/translations/zh_TW/docs/troubleshooting/recover-vwii-ioses-channels.md +++ /dev/null @@ -1,83 +0,0 @@ -# Recover a vWii IOS/Channel ---- -This page will guide you through the process of recovering a IOS or channel on your vWii, whether it has been corrupted or deleted for whatever reason. - -!> This has the potential to destroy your vWii NAND if you are not careful! Please consider [backing up](vwii/nand-backup) your SLCCMPT and OTP if you do not yet have them backed up! - -?> If you are using a system update blocking method, please [remove it](unblock-updates). - -?> Due to mounting conflicts with this app, you need to also disable the FTPiiu plugin. - -### What You Need {docsify-ignore} - -- A working [homebrew installation](introduction) on the Wii U side. -- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases). - -### Instructions {docsify-ignore} - -1. Copy the contents of the `decaffeinator.zip` file to the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC). -1. Launch the Homebrew Launcher. -1. Launch vWii Decaffeinator. - -### Recovering Process - -You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen. - - - -#### **Advanced options** - -### Advanced options - -?> This mode will clear the specified IOSes and channels to reinstall them. All other data (including cIOSes) will be preserved. - -
-Click here to show what can be recovered with this method. - -![Advanced options](docs/files/Advanced-options.jpg) ![Advanced options2](docs/files/Advanced-options2.jpg) ![Advanced options3](docs/files/Advanced-options3.jpg) - -
- -1. Select `Advanced options` on the menu. -1. Use the D-Pad to toggle what you would like to be restored. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -#### **Light mode** - -### Light mode - -?> This mode will clear the System Menu, Wii Message Board save data, IOSes, and other system titles to reinstall clean versions of them. Please note this will remove all cIOSes as well and must be reinstalled. All other data will be preserved. - -1. Select `Light mode` on the menu. -1. Press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - -#### **Aggressive mode** - -### Aggressive mode - -!> This mode will clear **everything** to reinstall clean versions of the default IOSes and channels. Please note that all cIOSes, save data, and channels will be lost, and the vWii NAND will be returned to its stock form! - -1. Select `Aggressive mode` on the menu. -1. Read the warning in its entirety. If you wish to proceed, press Start to initiate the restoration process. -1. When the application finishes, allow the application to launch the System Settings. -1. Perform a [System Update](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1136/~/how-to-perform-a-system-update) to finish the restoration process. - -?> You can now re-enable your [system update blocking method](block-updates). - -> If you receive Error Code 160-0101 when booting up the system after using vWii Decaffeinator, take out the inserted disc and unplug any external drives and restart the system. - - - -> If you receive Error Code 105-3102 when performing the system update, restart your console and reattempt the update. diff --git a/translations/zh_TW/docs/user-guide/archive/cbhc/browser-exploit.md b/translations/zh_TW/docs/user-guide/archive/cbhc/browser-exploit.md deleted file mode 100644 index eceb6f10804..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/cbhc/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/cbhc/ds-vc-choice.md b/translations/zh_TW/docs/user-guide/archive/cbhc/ds-vc-choice.md deleted file mode 100644 index 140421c0c3e..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - CBHC {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/zh_TW/docs/user-guide/archive/cbhc/installing-hblc.md b/translations/zh_TW/docs/user-guide/archive/cbhc/installing-hblc.md deleted file mode 100644 index b2f30f33257..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/cbhc/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/cbhc/launching-cfw.md b/translations/zh_TW/docs/user-guide/archive/cbhc/launching-cfw.md deleted file mode 100644 index e8612d897ef..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/cbhc/launching-cfw.md +++ /dev/null @@ -1,35 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/cbhc/nand-backup.md b/translations/zh_TW/docs/user-guide/archive/cbhc/nand-backup.md deleted file mode 100644 index 6e05ed14712..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/cbhc/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/cbhc/sd-preparation.md b/translations/zh_TW/docs/user-guide/archive/cbhc/sd-preparation.md deleted file mode 100644 index 6be8e066aeb..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/cbhc/sd-preparation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Archive - CBHC - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_TW/docs/user-guide/archive/cbhc/sidebar.md b/translations/zh_TW/docs/user-guide/archive/cbhc/sidebar.md deleted file mode 100644 index 0b8fd81f769..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/cfw-choice.md b/translations/zh_TW/docs/user-guide/archive/cfw-choice.md deleted file mode 100644 index 18d3daba629..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/cfw-choice.md +++ /dev/null @@ -1,43 +0,0 @@ -# Choose The CFW You Want ---- -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../introduction)** - -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/zh_TW/docs/user-guide/archive/haxchi/browser-exploit.md b/translations/zh_TW/docs/user-guide/archive/haxchi/browser-exploit.md deleted file mode 100644 index 44c01f20706..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/haxchi/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/haxchi/ds-vc-choice.md b/translations/zh_TW/docs/user-guide/archive/haxchi/ds-vc-choice.md deleted file mode 100644 index fd76c16b171..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,36 +0,0 @@ -# Archive - Haxchi {docsify-ignore-all} - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, you cannot do this method as the 3DS and Wii U eShops have been shut down. - -- **Animal Crossing: Wild World** -- **Big Brain Academy** -- **Brain Age: Train Your Brain in Minutes a Day!** -- **Donkey Kong: Jungle Climber** -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** -- **Kirby: Mass Attack** -- **Kirby: Squeak Squad / Kirby: Mouse Attack** -- **The Legend of Zelda: Phantom Hourglass** -- **The Legend of Zelda: Spirit Tracks** -- **Mario & Luigi: Partners in Time** -- **Mario Kart DS** -- **New Super Mario Bros.** -- **Pokemon Mystery Dungeon: Explorers of the Sky** -- **Star Fox Command** -- **Super Mario 64 DS** -- **Wario: Master of Disguise** -- **WarioWare: Touched!** -- **Yoshi’s Island DS** -- **Yoshi Touch & Go** diff --git a/translations/zh_TW/docs/user-guide/archive/haxchi/installing-hblc.md b/translations/zh_TW/docs/user-guide/archive/haxchi/installing-hblc.md deleted file mode 100644 index f523adc3e23..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/haxchi/installing-hblc.md +++ /dev/null @@ -1,21 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/haxchi/launching-cfw.md b/translations/zh_TW/docs/user-guide/archive/haxchi/launching-cfw.md deleted file mode 100644 index b0ec87f6745..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/haxchi/launching-cfw.md +++ /dev/null @@ -1,24 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/haxchi/nand-backup.md b/translations/zh_TW/docs/user-guide/archive/haxchi/nand-backup.md deleted file mode 100644 index 1d9a208f984..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/haxchi/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/haxchi/sd-preparation.md b/translations/zh_TW/docs/user-guide/archive/haxchi/sd-preparation.md deleted file mode 100644 index d35dffc8293..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/haxchi/sd-preparation.md +++ /dev/null @@ -1,74 +0,0 @@ -# Archive - Haxchi - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_TW/docs/user-guide/archive/haxchi/sidebar.md b/translations/zh_TW/docs/user-guide/archive/haxchi/sidebar.md deleted file mode 100644 index bdf01b60842..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/entrypoint-choice.md b/translations/zh_TW/docs/user-guide/archive/mocha/entrypoint-choice.md deleted file mode 100644 index 5b73f0efe92..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/entrypoint-choice.md +++ /dev/null @@ -1,17 +0,0 @@ -# Archive - Mocha - Choose An Entrypoint - -!> **THE METHODS DESCRIBED IN THIS PAGE ARE NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../introduction)** - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/browser-exploit.md b/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/browser-exploit.md deleted file mode 100644 index e20f9b14938..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/browser-modding.md b/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/browser-modding.md deleted file mode 100644 index ea21df29f83..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,25 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../../uninstall-indexiine) page diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/launching-cfw.md b/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/launching-cfw.md deleted file mode 100644 index a6b618076d7..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/nand-backup.md b/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/nand-backup.md deleted file mode 100644 index f7d15e53f8e..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/sd-preparation.md b/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/sd-preparation.md deleted file mode 100644 index b12ca92d451..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,60 +0,0 @@ -# Archive - Mocha - Indexiine - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/sidebar.md b/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/sidebar.md deleted file mode 100644 index 54fe38beef2..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md b/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 5eddf640c07..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,15 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md b/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index 59b1daf9ee4..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,18 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/nand-backup.md b/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/nand-backup.md deleted file mode 100644 index 78942b0ba31..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md b/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index d57c97c53a6..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,58 +0,0 @@ -# Archive - Mocha - Online Exploit - -!> **THIS METHOD IS NO LONGER SUPPORTED** -**CURRENT METHOD IS AVAILABLE [HERE](../../../introduction)** - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/sidebar.md b/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/sidebar.md deleted file mode 100644 index 8b3b8338221..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../../donations) -- [About](../../../about) \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/mocha/sidebar.md b/translations/zh_TW/docs/user-guide/archive/mocha/sidebar.md deleted file mode 100644 index b84bc2b1a68..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/sidebar.md b/translations/zh_TW/docs/user-guide/archive/sidebar.md deleted file mode 100644 index 6c23dfc950b..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/sidebar.md +++ /dev/null @@ -1,13 +0,0 @@ -- **Archive** -- [Home Page](../../introduction) -- [Tiramisu](tiramisu/sd-preparation) -- [vWii Modding (old)](vwii/sd-preparation) -- [Legacy Methods](cfw-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) -- **Privacy** -- [Privacy Policy](../../privacy-policy) diff --git a/translations/zh_TW/docs/user-guide/archive/tiramisu/autoboot.md b/translations/zh_TW/docs/user-guide/archive/tiramisu/autoboot.md deleted file mode 100644 index e53d198360e..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process is finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/zh_TW/docs/user-guide/archive/tiramisu/browser-exploit.md b/translations/zh_TW/docs/user-guide/archive/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/zh_TW/docs/user-guide/archive/tiramisu/finalizing-setup.md b/translations/zh_TW/docs/user-guide/archive/tiramisu/finalizing-setup.md deleted file mode 100644 index 63fd6e61f72..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,42 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have to hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. diff --git a/translations/zh_TW/docs/user-guide/archive/tiramisu/installing-payloadloader.md b/translations/zh_TW/docs/user-guide/archive/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/archive/tiramisu/nand-backup.md b/translations/zh_TW/docs/user-guide/archive/tiramisu/nand-backup.md deleted file mode 100644 index 35b68d43a48..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/zh_TW/docs/user-guide/archive/tiramisu/sd-preparation.md b/translations/zh_TW/docs/user-guide/archive/tiramisu/sd-preparation.md deleted file mode 100644 index ee1e919d68b..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/tiramisu/sd-preparation.md +++ /dev/null @@ -1,69 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/zh_TW/docs/user-guide/archive/tiramisu/sidebar.md b/translations/zh_TW/docs/user-guide/archive/tiramisu/sidebar.md deleted file mode 100644 index 3e03474fc14..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autoboot) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/zh_TW/docs/user-guide/archive/vwii/browser-exploit.md b/translations/zh_TW/docs/user-guide/archive/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/zh_TW/docs/user-guide/archive/vwii/finalizing-setup.md b/translations/zh_TW/docs/user-guide/archive/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/zh_TW/docs/user-guide/archive/vwii/installing-cioses.md b/translations/zh_TW/docs/user-guide/archive/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/zh_TW/docs/user-guide/archive/vwii/installing-homebrewchannel.md b/translations/zh_TW/docs/user-guide/archive/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/zh_TW/docs/user-guide/archive/vwii/nand-backup.md b/translations/zh_TW/docs/user-guide/archive/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/zh_TW/docs/user-guide/archive/vwii/patching-ios80.md b/translations/zh_TW/docs/user-guide/archive/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/zh_TW/docs/user-guide/archive/vwii/sd-preparation.md b/translations/zh_TW/docs/user-guide/archive/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/zh_TW/docs/user-guide/archive/vwii/sidebar.md b/translations/zh_TW/docs/user-guide/archive/vwii/sidebar.md deleted file mode 100644 index 0efcb687a46..00000000000 --- a/translations/zh_TW/docs/user-guide/archive/vwii/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -**vWii Modding** - -- [Home Page](../../introduction) -- [SD Preparation](sd-preparation) -- [NAND Backup](nand-backup) -- [Installing the Homebrew Channel](installing-homebrewchannel) -- [Installing cIOSes](installing-cioses) -- [Patching IOS 80 (Optional)](patching-ios80) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080\&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored\&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080\&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/zh_TW/docs/user-guide/aroma/autoboot.md b/translations/zh_TW/docs/user-guide/aroma/autoboot.md deleted file mode 100644 index ae25e67ef0b..00000000000 --- a/translations/zh_TW/docs/user-guide/aroma/autoboot.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Autobooting Aroma - -Currently, every time you want to launch Aroma you will have to launch the Health and Safety information app. If you wish to automatically launch into Aroma on every boot, you can autoboot the Health and Safety Information app. - -If you don't want to autoboot Aroma, you can skip this step and follow the Setting Up PayloadLoader section below. - -### Instructions - -1. Start the console to boot into the Wii U Menu, and then launch the Health and Safety Information app. -2. Press A to launch the `aroma` environment. -3. Press A to launch the Wii U Menu. -4. Once you are at the Wii U Menu, launch the PayloadLoader Installer. -5. Press A to select `Check`. -6. Select `Boot options`. -7. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -8. When the process has finished, press A to shutdown the console. -9. The PayloadLoader will now be launched automatically on every boot. - -### Setting up PayloadLoader, Environment Loader and Aroma - -Now, we are going to make the Aroma environment start automatically when your console loads the Health and Safety Information app and select Wii U Menu as the default boot option. - -1. Launch the EnvironmentLoader. - - If you are autobooting the PayloadLoader, simply turn on your Wii U. - - If you skipped the autobooting steps, launch the Health and Safety Information app. - -2. Press Y on `aroma` to set this to your default environment, then press A to launch into Aroma. - ![](../docs/assets/img/guide/EL_Highlight.png) - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting or loading the Health and Safety Information app. - -3. On the Aroma Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - ![](../docs/assets/img/guide/ABM_Highlight.png) - -4. Aroma will now be launched each time you boot the console (or load Health and Safety) and then straight into the Wii U Menu. - - To open the Aroma Boot Selector in the future, you have to hold START (+) while the console is booting or loading the Health and Safety Information app. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. diff --git a/translations/zh_TW/docs/user-guide/aroma/browser-exploit.md b/translations/zh_TW/docs/user-guide/aroma/browser-exploit.md deleted file mode 100644 index 45da3862122..00000000000 --- a/translations/zh_TW/docs/user-guide/aroma/browser-exploit.md +++ /dev/null @@ -1,16 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -2. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -3. Click on `Run Exploit!` and hold the B button until you see this menu, it will be necessary for the next steps. - ![](../docs/assets/img/guide/PLL.png) - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - -?> If you get any errors like FSOpenfile failed, FSGetMountSource failed, or SD Mount failed, refer to the browser errors in [Common Issues and Fixes](../common-issues-fixes). diff --git a/translations/zh_TW/docs/user-guide/aroma/finalizing-setup.md b/translations/zh_TW/docs/user-guide/aroma/finalizing-setup.md deleted file mode 100644 index bf2e172c8fe..00000000000 --- a/translations/zh_TW/docs/user-guide/aroma/finalizing-setup.md +++ /dev/null @@ -1,55 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Aroma are installed, we are going to finalize the setup. - -### Additional Homebrew Apps - -?> All Homebrew applications are loaded from the Wii U Menu on Aroma. - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is an Aroma module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Recommended Plugins - -| Name | Description | Installation Instructions | -| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/) ([Download](https://github.com/wiiu-env/ftpiiu_plugin/releases)) | Runs a FTP server in the background. | 1. Extract the downloaded `ftpiiu_vX_X.zip` file.
2. Copy the `ftpiiu.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [SDCafiine](https://github.com/wiiu-env/sdcafiine_plugin/) ([Download](https://github.com/wiiu-env/sdcafiine_plugin/releases)) | Allows you to mod games by redirecting files to the SD Card. | 1. Extract the downloaded `sdcafiine_vX_X_X.zip` file.
2. Copy the `sdcafiine.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | -| [Bloopair](https://github.com/GaryOderNichts/Bloopair/) ([Download](https://github.com/GaryOderNichts/Bloopair/releases)) | Allows wirelessly connecting most popular Bluetooth capable controllers. | 1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file.
2. Copy the `30_bloopair.rpx` to the `wiiu/environments/aroma/modules/setup/` folder on the root of your SD Card.
3. Copy the `wiiu` folder to the root of your SD Card. | -| [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/) ([Download](https://github.com/wiiu-env/ScreenshotWUPS/releases)) | Allows taking screenshots directly to the SD Card. | 1. Extract the downloaded `screenshot_plugin_vX_X.zip` file.
2. Copy the `screenshot.wps` to the `wiiu/environments/aroma/plugins` folder on the root of your SD Card. | - -### Pretendo Network - -Pretendo is a replacement service for the Nintendo Network, which brings back online services as they are set to be discontinued. It also revives the Miiverse service, via juxtaposition. The official guide can be found [here](https://pretendo.network/docs/install/wiiu). - -### Booting Tiramisu (optional) - -?> Tiramisu is now archived, and was succeeded by Aroma and considered outdated. No more Homebrew will be developed for it, and services like Pretendo have ended support for it. - -However, if you find the need to boot into Tiramisu, for example, to use a legacy Homebrew app, do the following: - -1. Download the latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). -1. Copy the `wiiu` folder to the root of your SD Card. - - The folder should merge with the existing `wiiu` folder if not done automatically. -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Start the EnvironmentLoader. - - If you're autobooting into it, this can be done by powering on your console and holding X. - - You do not need to reinstall the PayloadLoader if you already did so with Aroma. -1. Highlight the entry called `tiramisu` using the D-Pad. -1. Launch Tiramisu by pressing A. -1. Launch the Wii U Menu by pressing A. - - To make the console autoboot the Wii U Menu when loading the Tiramisu environment, press Y. -1. Homebrew Launcher can be loaded by launching the Mii Maker app. diff --git a/translations/zh_TW/docs/user-guide/aroma/getting-started.md b/translations/zh_TW/docs/user-guide/aroma/getting-started.md deleted file mode 100644 index b7965fbf832..00000000000 --- a/translations/zh_TW/docs/user-guide/aroma/getting-started.md +++ /dev/null @@ -1,39 +0,0 @@ -# Aroma {docsify-ignore-all} - -Aroma is a work-in-progress environment and the successor to Tiramisu. - -### What is Aroma? - -Aroma is an environment like Tiramisu, which can be booted through the Environment Loader. -Aroma, just like Tiramisu, uses the same Mocha version, support for setup modules, and comes with the Autoboot Module, which includes the boot selector and Quick Start support. -Aroma comes with several additional features, including a plugin system, a new way of launching homebrews, and many built-in modules and plugins (i.e. Region Free patches). - -### What can I do with Aroma? - -For a detailed overview check out [this blogpost](https://maschell.github.io/homebrew/2022/09/05/aroma.html). A quick summary is given below. - -#### Modules - -Aroma supports modules which, unlike setup modules, always run in the background. -This allows for further extending the functionality of the console. - -#### Plugins - -Plugins, similarly to modules, are also running in the background. -They can enhance the experience of the console by changing and providing additional features. -Plugins can be configured using a configuration menu, which can be opened using a button combination. - -#### Wii U Homebrew Bundles - -Wii U Homebrew Bundles (WUHB) are a new way of launching homebrew. -These `.wuhb` files contain the main executable and can directly include icon and banner images and additional content. -With the `homebrew_on_menu` plugin, WUHB files can be directly launched from the Wii U menu, just like official channels. - -### What are the limitations? - -Due to technical limitations, a lot of old homebrew applications will no longer work with Aroma. -This includes all `.elf` homebrews, but also some `.rpx` homebrews(i.e. RetroArch), which don't implement necessary functionality properly. -These homebrews need to be updated with support for Aroma. To run old homebrews you need to boot the Tiramisu environment. -Launching homebrews through the now outdated Homebrew Launcher is no longer possible with Aroma. - -Besides the limitations mentioned above, note that Aroma is still a beta release. Not everything has been tested yet, and additional issues might be discovered. This doesn't necessarily mean Aroma is unstable, but there is a chance that you may experience something not working properly. diff --git a/translations/zh_TW/docs/user-guide/aroma/installing-payloadloader.md b/translations/zh_TW/docs/user-guide/aroma/installing-payloadloader.md deleted file mode 100644 index 01b4a03e5b8..00000000000 --- a/translations/zh_TW/docs/user-guide/aroma/installing-payloadloader.md +++ /dev/null @@ -1,29 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Aroma just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Aroma, you may skip to step 5. - -1. Take the SD Card out of your PC and plug it into your Wii U. -2. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -3. Press A to launch the `aroma` environment. - ![](../docs/assets/img/guide/EL.png) - - You will get a warning message about the update folder existing. **This is normal.** Press X to block updates. - ![](../docs/assets/img/guide/Warn.png) -4. Press A to launch the Wii U Menu. - ![](../docs/assets/img/guide/ABM.png) -5. At the Wii U Menu, look for the newly appeared `PayloadLoader Installer` title (the rocket coming out of a box) and launch it. - ![](../docs/assets/img/guide/PLLI.png) -6. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -7. Press the A button to select `Install / Update`. -8. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -9. After installing has finished, press A to shut down the console. diff --git a/translations/zh_TW/docs/user-guide/aroma/nand-backup.md b/translations/zh_TW/docs/user-guide/aroma/nand-backup.md deleted file mode 100644 index 56bb91d65a3..00000000000 --- a/translations/zh_TW/docs/user-guide/aroma/nand-backup.md +++ /dev/null @@ -1,21 +0,0 @@ -# Aroma {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U MLC is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your MLC. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover any type of brick. - -?> Restoring a NAND Backup on the Wii U requires ISFShax or additional hardware and microsoldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work without the required knowledge. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - ![SLC: Yes, SLCCMPT: Yes, MLC: Yes or No, OTP: Yes, SEEPROM: Yes](../docs/assets/img/guide/NAND.png) - - MLC is **OPTIONAL**, if you do not want to dump it, leave it on `No`. If you do want to dump it, make sure you have a SD Card big enough for it and put it on `Yes`. -3. Press the A button to start the dumping process. -4. When the process is completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part` file) to somewhere safe (Documents, Google Drive, OneDrive, etc.) on your computer. - - They will appear on the root of the SD Card. -6. Delete the files you just copied from your SD Card to free up space. diff --git a/translations/zh_TW/docs/user-guide/aroma/sd-preparation.md b/translations/zh_TW/docs/user-guide/aroma/sd-preparation.md deleted file mode 100644 index c3bce316993..00000000000 --- a/translations/zh_TW/docs/user-guide/aroma/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Aroma {docsify-ignore-all} - -## SD Preparation - -We will now place the required Aroma files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. -**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### Instructions - -1. On the [Aroma](https://aroma.foryour.cafe) site, scroll down to the **Download** section. - - Read through the steps and click on the checkboxes. ![](../docs/assets/img/guide/Aroma_Box.png) - - Click on `Download Payloads` and `Download Base Aroma`. ![](../docs/assets/img/guide/Aroma_DL.png) -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the `wiiu` folder of the two newly downloaded *`.zip`* files to the root of your SD Card. - - The `wiiu` folders should be merged if not done automatically. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - -?> If you're on a Mac machine, select `Merge` instead of replace. If the merge option does not show immediately, press and hold the `Option` key while moving files to the root. - ----------- -Extracting the contents of the zip to the root is done like so. -
- -
- -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂AromaUpdater - ┃ ┃ ┗📜AromaUpdater.wuhb - ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┗ (All other apps should be here too) - ┣ 📂environments - ┃ ┗ 📂aroma - ┃ ┣ 📂modules - ┃ ┃ ┣ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜10_wums_loader.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ (All other Aroma modules ending with .wms should be here too) - ┃ ┣ 📂plugins - ┃ ┃ ┣ 📜AromaBasePlugin.wps - ┃ ┃ ┣ 📜drc_region_free.wps - ┃ ┃ ┣ 📜homebrew_on_menu.wps - ┃ ┃ ┣ 📜regionfree.wps - ┃ ┃ ┗ (All other Aroma plugins ending with .wps should be here too) - ┃ ┗ 📜root.rpx - ┣ 📂payloads - ┃ ┣ 📂default - ┃ ┃ ┗ 📜payload.elf - ┃ ┗ 📂nanddumper - ┃ ┗ 📜payload.elf - ┣ 📜payload.rpx - ┗ 📜payload.elf -``` - -
- -?> If you already have the PayloadLoader installed, you may go directly to [Finalizing Setup](./finalizing-setup.md) diff --git a/translations/zh_TW/docs/user-guide/aroma/sidebar.md b/translations/zh_TW/docs/user-guide/aroma/sidebar.md deleted file mode 100644 index e99f8a1264e..00000000000 --- a/translations/zh_TW/docs/user-guide/aroma/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Aroma** -- [Home Page](../introduction) -- [Getting Started with Aroma](getting-started) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [NAND Backup](nand-backup) -- [Installing PayloadLoader](installing-payloadloader) -- [Autobooting Aroma](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/zh_TW/docs/user-guide/cbhc/browser-exploit.md b/translations/zh_TW/docs/user-guide/cbhc/browser-exploit.md deleted file mode 100644 index aa6e836d9ea..00000000000 --- a/translations/zh_TW/docs/user-guide/cbhc/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# CBHC - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/cbhc/ds-vc-choice.md b/translations/zh_TW/docs/user-guide/cbhc/ds-vc-choice.md deleted file mode 100644 index 7e45995688f..00000000000 --- a/translations/zh_TW/docs/user-guide/cbhc/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# CBHC {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/zh_TW/docs/user-guide/cbhc/installing-hblc.md b/translations/zh_TW/docs/user-guide/cbhc/installing-hblc.md deleted file mode 100644 index 22723e584a8..00000000000 --- a/translations/zh_TW/docs/user-guide/cbhc/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# CBHC - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Home Menu for easy access. - -?> This page is only for Haxchi and CBHC users. The Homebrew Launcher Channel (the version of the Homebrew Channel you launch from the Wii U Menu) will **not** work with Mocha CFW! - -### Instructions {docsify-ignore} - -1. Power on your console. -1. Press the Home button during the `Autobooting...` screen to get into the boot menu. -1. Select `Boot Homebrew Launcher` to launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/cbhc/launching-cfw.md b/translations/zh_TW/docs/user-guide/cbhc/launching-cfw.md deleted file mode 100644 index 9d886311415..00000000000 --- a/translations/zh_TW/docs/user-guide/cbhc/launching-cfw.md +++ /dev/null @@ -1,32 +0,0 @@ -# CBHC - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -!> Installing CBHC incorrectly can brick your Wii U. Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC!
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](../uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules will result in a brick. - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS Virtual Console game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. Run the modified DS game again and hold the A button after launching it. This will run the Homebrew Launcher. -1. Navigate the Homebrew launcher and run the CBHC app. -1. Use the D-Pad to navigate the cursor to the game you previously installed Haxchi to and press the A button to install CBHC. -1. Once the installation has finished, your console will launch the Wii U Menu. -1. Reboot your console. If CBHC installed correctly, you should see a new boot menu. (CBHC is not compatible with Quick Start. If you are using the Quick Start Menu, please turn it off.) -1. Use the D-Pad to navigate to `Autoboot: Disabled` and press the A button until it says `Autoboot: System Menu`. -1. Use the D-Pad to navigate to `Boot System Menu` and press the A button. This will launch the Wii U Menu with CFW enabled. -1. Your console now automatically boots into CFW every reboot. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/cbhc/nand-backup.md b/translations/zh_TW/docs/user-guide/cbhc/nand-backup.md deleted file mode 100644 index e324b7a81f8..00000000000 --- a/translations/zh_TW/docs/user-guide/cbhc/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# CBHC - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/cbhc/sd-preparation.md b/translations/zh_TW/docs/user-guide/cbhc/sd-preparation.md deleted file mode 100644 index 926e5f6d491..00000000000 --- a/translations/zh_TW/docs/user-guide/cbhc/sd-preparation.md +++ /dev/null @@ -1,78 +0,0 @@ -# CBHC - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of [CBHC](https://wiiubru.com/appstore/zips/cbhc.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `cbhc.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂cbhc - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_TW/docs/user-guide/cbhc/sidebar.md b/translations/zh_TW/docs/user-guide/cbhc/sidebar.md deleted file mode 100644 index 830756be043..00000000000 --- a/translations/zh_TW/docs/user-guide/cbhc/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **CBHC** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/cfw-choice.md b/translations/zh_TW/docs/user-guide/cfw-choice.md deleted file mode 100644 index 253c9832a69..00000000000 --- a/translations/zh_TW/docs/user-guide/cfw-choice.md +++ /dev/null @@ -1,40 +0,0 @@ -# Choose The CFW You Want ---- -?> Before starting, make sure to update your Wii U console to the latest firmware (5.5.5) if you haven't already. - -There are two main custom firmwares: Haxchi/Coldboot Haxchi (usually abbreviated as "CBHC"), as well as Mocha. - -Haxchi/CBHC are both injected into a paid DS Virtual Console game. Haxchi will need to be manually started off the Wii U Menu to boot custom firmware, while CBHC will boot custom firmware automatically while the system is booting up. Mocha is accessed through the browser exploit or the Indexiine method, which makes it the only free custom firmware. - -The custom firmware you decide to use is ultimately **your** preference. There is no right or wrong custom firmware to go with, so it is recommended that you feel free to pick the one that sounds the best for your needs! - -## Haxchi - -- Requires a legitimately installed, paid DS Virtual Console game from the eShop. -- Can be used to launch CFW directly from the Wii U Menu. -- Needs to be re-launched from the Wii U Menu every reboot to enable custom firmware. -- Its functionality can be extended by installing Coldboot Haxchi (CBHC) to a Haxchi installation. - -### [**Continue with Haxchi**](haxchi/ds-vc-choice) {docsify-ignore} - -## CBHC - -!> Installing CBHC incorrectly can brick your Wii U! Make sure to follow the following rules when installing CBHC:
- The DS game has to be legitimately installed from the eShop!
- Don't format the system while CBHC is installed!
- Don't delete the user account that bought the DS Virtual Console game!
- Don't re-install the same game using WUP Installer or from the eShop!
- Don't install Haxchi over CBHC! (You will not brick, but it will cause a boot-loop! Hold A when booting to access the Homebrew Launcher and uninstall CBHC.)
- Don't uninstall the DS Virtual Console game without [properly uninstalling CBHC first](uninstall-cbhc)!
- Don't move the DS Virtual Console game to a USB drive! - -!> Breaking one of the above rules **can** result in a brick! - -> If you are worried about breaking one of these rules while using CBHC, consider setting up Parental Controls for your user! Blocking `Data Management` and setting `Game Rating` to the highest possible rating can help prevent common mistakes users may make when using CBHC. Check [here](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1081/~/how-to-change-parental-controls) for more information on how to change your Parental Controls settings. - -- Requires a legitimately installed paid DS Virtual Console game from the eShop. -- Automatically launches custom firmware on every boot. - -### [**Continue with CBHC**](cbhc/ds-vc-choice) {docsify-ignore} - -## Mocha - -- Does not require any game, and is therefore free. -- Needs to be re-launched through the browser exploit every reboot to enable custom firmware. -- Is not compatible with the Homebrew Launcher Channel. -- May require an Internet connection depending on what entry point you choose. - -### [**Continue with Mocha**](mocha/entrypoint-choice) {docsify-ignore} diff --git a/translations/zh_TW/docs/user-guide/haxchi/browser-exploit.md b/translations/zh_TW/docs/user-guide/haxchi/browser-exploit.md deleted file mode 100644 index 8853ba483cb..00000000000 --- a/translations/zh_TW/docs/user-guide/haxchi/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Haxchi - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/haxchi/ds-vc-choice.md b/translations/zh_TW/docs/user-guide/haxchi/ds-vc-choice.md deleted file mode 100644 index d72eab63dbe..00000000000 --- a/translations/zh_TW/docs/user-guide/haxchi/ds-vc-choice.md +++ /dev/null @@ -1,33 +0,0 @@ -# Haxchi {docsify-ignore-all} - -## Choose Your DS VC Game - -The first thing to decide is what DS Virtual Console (usually abbreviated as "VC") game you will buy. -Please note that the game you injected Haxchi/CBHC into will not be playable anymore until you uninstall Haxchi/CBHC and reinstall the game from the eShop. - -### Compatible DS VC Games - -?> If you have a European region console, there is a chance that you might already have got Dr. Kawashima's Brain Training: How Old is Your Brain? for free. Head over [to the eShop](https://en-americas-support.nintendo.com/app/answers/detail/a_id/8563/~/how-to-view-previously-downloaded-titles-on-wii-u) and check if you got the game. - -If you do not own any of the games listed below, we recommend buying Brain Age (North America) or Brain Training (Europe) as it currently is in the cheapest price bracket of compatible games and is the game we least expect you to want to play. - -- **Animal Crossing: Wild World** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Animal-Crossing-Wild-World-270011.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/animal-crossing-wild-world-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023019 "Buy it from the Japanese eShop") -- **Big Brain Academy** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Big-Brain-Academy-270143.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/big-brain-academy-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013967 "Buy it from the Japanese eShop") -- **Brain Age: Train Your Brain in Minutes a Day!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Donkey Kong: Jungle Climber** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Donkey-Kong-Jungle-Climber-270506.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/dk-jungle-climber-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014168 "Buy it from the Japanese eShop") -- **Dr. Kawashima's Brain Training: How Old is Your Brain?** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Dr-Kawashima-s-Brain-Training-How-Old-is-Your-Brain--270627.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/brain-age-train-your-brain-in-minutes-a-day-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006826 "Buy it from the Japanese eShop") -- **Kirby: Canvas Curse / Kirby: Power Paintbrush** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Power-Paintbrush-271287.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-canvas-curse-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015447 "Buy it from the Japanese eShop") -- **Kirby: Mass Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mass-Attack-271265.html#Overview "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-mass-attack-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017169 "Buy it from the Japanese eShop") -- **Kirby: Squeak Squad / Kirby: Mouse Attack** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Kirby-Mouse-Attack-271276.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/kirby-squeak-squad-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014167 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Phantom Hourglass** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Phantom-Hourglass-273289.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-phantom-hourglass-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017170 "Buy it from the Japanese eShop") -- **The Legend of Zelda: Spirit Tracks** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/The-Legend-of-Zelda-Spirit-Tracks-273300.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/the-legend-of-zelda-spirit-tracks-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000017168 "Buy it from the Japanese eShop") -- **Mario & Luigi: Partners in Time** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Luigi-Partners-in-Time-271595.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-luigi-partners-in-time-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013367 "Buy it from the Japanese eShop") -- **Mario Kart DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Mario-Kart-DS-271518.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/mario-kart-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011949 "Buy it from the Japanese eShop") -- **New Super Mario Bros.** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/New-Super-Mario-Bros--271969.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/new-super-mario-bros-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000011947 "Buy it from the Japanese eShop") -- **Pokemon Mystery Dungeon: Explorers of the Sky** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Pokemon-Mystery-Dungeon-Explorers-of-Sky-272409.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/pokemon-mystery-dungeon-explorers-of-sky-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000023018 "Buy it from the Japanese eShop") -- **Star Fox Command** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Star-Fox-Command-273113.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/star-fox-command-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014227 "Buy it from the Japanese eShop") -- **Super Mario 64 DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Super-Mario-64-DS-273179.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/super-mario-64-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000015449 "Buy it from the Japanese eShop") -- **Wario: Master of Disguise** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Wario-Master-of-Disguise-273553.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/wario-master-of-disguise-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000014228 "Buy it from the Japanese eShop") -- **WarioWare: Touched!** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/WarioWare-Touched--273564.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/warioware-touched-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013308 "Buy it from the Japanese eShop") -- **Yoshi’s Island DS** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-s-Island-DS-273630.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshis-island-ds-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000013369 "Buy it from the Japanese eShop") -- **Yoshi Touch & Go** - [EUR](https://www.nintendo.eu/Games/Nintendo-DS/Yoshi-Touch-Go-273641.html "Buy it from the European eShop") [USA](https://www.nintendo.com/games/detail/yoshi-touch-go-wii-u/ "Buy it from the American eShop") [JPN](https://www.nintendo.co.jp/titles/20010000006827 "Buy it from the Japanese eShop") diff --git a/translations/zh_TW/docs/user-guide/haxchi/installing-hblc.md b/translations/zh_TW/docs/user-guide/haxchi/installing-hblc.md deleted file mode 100644 index d346a33b4fa..00000000000 --- a/translations/zh_TW/docs/user-guide/haxchi/installing-hblc.md +++ /dev/null @@ -1,18 +0,0 @@ -# Haxchi - -## Installing the Homebrew Launcher Channel {docsify-ignore} - -This page will install the Homebrew Launcher Channel as an application directly to your Wii U Menu for easy access. - -### Instructions {docsify-ignore} - -?> Installing the Homebrew Launcher Channel is optional as you can already launch it by holding the A button while launching Haxchi. - -1. Power on your console. -1. Launch the Haxchi DS game from the Wii U Menu. This will re-launch the Wii U Menu with CFW activated. -1. Launch the Haxchi DS game again while holding the A button. This will launch the Homebrew Launcher. -1. Navigate the Homebrew Launcher and launch the WUP Installer GX2 application. -1. Use the touchscreen to select `Homebrew Launcher Channel`. Press `Install` and confirm with `Yes`. -1. Select NAND as the installation destination. This will install the Homebrew Launcher Channel to the Wii U Menu. -1. Once the process is finished, press the Home button until you're back at the Wii U Menu. -1. You will now see the Homebrew Launcher Channel installed on your Wii U Menu. Keep in mind you will need to launch CFW every reboot to run this channel. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/haxchi/launching-cfw.md b/translations/zh_TW/docs/user-guide/haxchi/launching-cfw.md deleted file mode 100644 index a121863d85e..00000000000 --- a/translations/zh_TW/docs/user-guide/haxchi/launching-cfw.md +++ /dev/null @@ -1,21 +0,0 @@ -# Haxchi - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -?> If the install fails for some reason, try uninstalling and redownloading the DS VC game from the eShop and make sure it is being installed to the NAND. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. If you haven't already, now download your DS VC game of choice from the eShop. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Haxchi app. -1. Use the D-Pad to navigate the cursor to the game you want to install Haxchi to and press the A button to install it. -1. Once the installation has finished, your console will launch the Wii U Menu. You will see your game replaced by a Haxchi icon. -1. Run the modified DS game. This will reboot the console and enable CFW. -1. You will need to run your Haxchi DS game every reboot to launch CFW. -1. You can now re-attach any USB devices you had attached before starting the guide. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/haxchi/nand-backup.md b/translations/zh_TW/docs/user-guide/haxchi/nand-backup.md deleted file mode 100644 index 9d6d642ad4a..00000000000 --- a/translations/zh_TW/docs/user-guide/haxchi/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Haxchi - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/haxchi/sd-preparation.md b/translations/zh_TW/docs/user-guide/haxchi/sd-preparation.md deleted file mode 100644 index 0b3b798d502..00000000000 --- a/translations/zh_TW/docs/user-guide/haxchi/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Haxchi - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [The Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/releases/tag/v2.1_fix). - - You will need to download the `homebrew_launcher_channel.v2.1_fix.zip` file. -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Haxchi](https://wiiubru.com/appstore/zips/haxchi.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Create a folder called `install` on the root of your SD Card. -1. Copy the contents of the `homebrew_launcher_channel.v2.1_fix.zip` file to the `install` folder you created. -1. Copy the contents of the `haxchi.zip` file to the root of your SD Card. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂haxchi - ┃ ┣ 📜bootDrcTex.tga - ┃ ┣ 📜bootTvTex.tga - ┃ ┣ 📜config.txt - ┃ ┣ 📜iconTex.tga - ┃ ┗ 📜title.txt - ┣ 📂install - ┃ ┗ 📂Homebrew Launcher Channel - ┃ ┣ 📜00000000.app - ┃ ┣ 📜00000003.h3 - ┃ ┣ ... - ┃ ┣ 📜title.cert - ┃ ┣ 📜title.tik - ┃ ┗ 📜title.tmd - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_TW/docs/user-guide/haxchi/sidebar.md b/translations/zh_TW/docs/user-guide/haxchi/sidebar.md deleted file mode 100644 index 63a9f07fc55..00000000000 --- a/translations/zh_TW/docs/user-guide/haxchi/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Haxchi** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose Your DS VC Game](ds-vc-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- [Install Homebrew Channel](installing-hblc) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/introduction.md b/translations/zh_TW/docs/user-guide/introduction.md deleted file mode 100644 index 0111648d2da..00000000000 --- a/translations/zh_TW/docs/user-guide/introduction.md +++ /dev/null @@ -1,62 +0,0 @@ -# Wii U Hacks Guide ---- -A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware. - -?> **Discord Help** For live support with this guide please visit us in **#wiiu-assistance** on the [Nintendo Homebrew Discord](https://discord.gg/C29hYvh) and ask, in English, for assistance. Please read **#faq-wiiu**, as well as our [Frequently Asked Questions](faq) page beforehand to see if your question has already been answered. - -> If you appreciate this guide, we accept [donations](donations). - -> For complete guides to homebrew and custom firmware for other devices, check out [hacks.guide](https://hacks.guide). - -### Homebrew - -Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more. - -Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region. - -### Custom Firmware - -Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease. CFW can be set up on any console on the latest version. - -### Homebrew & CFW Uses - -Among other things, it allows you to do the following: - -- Use “ROM hacks” for games that you own. -- Backup, edit and restore saves for many games. -- Play games for older systems with various emulators, using RetroArch or other standalone emulators. -- Play out-of-region games. -- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive. - - -### End Goal - -This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware. - -### Before Starting - -!> Before beginning the guide, you must know the risks of Wii U hacking: **EVERY** time you modify your system, there is always the potential for an **UNRECOVERABLE** brick. They’re rare but still a possibility so make sure you follow **ALL** directions **EXACTLY!** -> -> This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below. -> -> You will need the following in order to successfully follow this guide: -> -> - An SD Card. -> - A device such as a computer to place files onto the SD Card. -> - A Wii U with internet access. -> -> A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: Go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide. - -If everything goes according to plan, you will lose no data and end up with everything that you started with (games, saves, NNID, etc, will be preserved). - -Keep your device plugged in throughout the entire process to avoid data loss or damage from an unexpected power-off. - -After following this guide, CFW will be loaded and enabled on boot, unless you choose to not follow the Autobooting Aroma section. - -It is advised that you read the entire guide from start to finish one or more times before actually running through the guide with your system. - ---- - -### [Continue to Aroma](aroma/getting-started) {docsify-ignore} diff --git a/translations/zh_TW/docs/user-guide/mocha/entrypoint-choice.md b/translations/zh_TW/docs/user-guide/mocha/entrypoint-choice.md deleted file mode 100644 index 9517fed2d34..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/entrypoint-choice.md +++ /dev/null @@ -1,14 +0,0 @@ -# Mocha - Choose An Entrypoint - -## Online Exploit - -- Requires an Internet connection every time you want to launch the Homebrew Launcher. - -### [**Continue with the Online Exploit**](online-exploit/sd-preparation) {docsify-ignore} - -## Indexiine - -- Requires an Internet connection for the setup process but can be used offline once it's been setup. -- Requires you to modify a system file. - -### [**Continue with Indexiine**](indexiine/sd-preparation) {docsify-ignore} \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/mocha/indexiine/browser-exploit.md b/translations/zh_TW/docs/user-guide/mocha/indexiine/browser-exploit.md deleted file mode 100644 index c14364eb96c..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/indexiine/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/mocha/indexiine/browser-modding.md b/translations/zh_TW/docs/user-guide/mocha/indexiine/browser-modding.md deleted file mode 100644 index d7c0937dc1c..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/indexiine/browser-modding.md +++ /dev/null @@ -1,22 +0,0 @@ -# Mocha - Indexiine - -## Internet Browser Modding {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can install Indexiine on your system. - -?> In case you haven't plugged your SD Card back into your Wii U after copying your NAND backup to a computer, do so now. - - -### Instructions {docsify-ignore} - -1. Turn on your Wii U. -1. Launch the internet browser and open the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. -1. Navigate through the Homebrew Launcher and launch the `Indexiine Installer` app. -1. Press the A button to install Indexiine. -1. When the process completed, close the Homebrew Launcher to get back to your Wii U menu. - -The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an internet connection. If you want to visit another website, open it before Indexiine triggers the exploit. - -?> In case you ever want to uninstall Indexiine, see the [Uninstall Indexiine](../../uninstall-indexiine) page diff --git a/translations/zh_TW/docs/user-guide/mocha/indexiine/launching-cfw.md b/translations/zh_TW/docs/user-guide/mocha/indexiine/launching-cfw.md deleted file mode 100644 index bc151d0066c..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/indexiine/launching-cfw.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Indexiine - -## Launching CFW {docsify-ignore} - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Launch the Homebrew Launcher by launching the Internet Browser. -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/mocha/indexiine/nand-backup.md b/translations/zh_TW/docs/user-guide/mocha/indexiine/nand-backup.md deleted file mode 100644 index 88814cff831..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/indexiine/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Indexiine - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/mocha/indexiine/sd-preparation.md b/translations/zh_TW/docs/user-guide/mocha/indexiine/sd-preparation.md deleted file mode 100644 index d34135513da..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/indexiine/sd-preparation.md +++ /dev/null @@ -1,57 +0,0 @@ -# Mocha - Indexiine - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. -- The latest release of [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `indexiine-installer.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_TW/docs/user-guide/mocha/indexiine/sidebar.md b/translations/zh_TW/docs/user-guide/mocha/indexiine/sidebar.md deleted file mode 100644 index f0c416087bb..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/indexiine/sidebar.md +++ /dev/null @@ -1,15 +0,0 @@ -- **Mocha - Indexiine** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Internet Browser Modding](browser-modding) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/mocha/online-exploit/browser-exploit.md b/translations/zh_TW/docs/user-guide/mocha/online-exploit/browser-exploit.md deleted file mode 100644 index 30b7c94c5bc..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/online-exploit/browser-exploit.md +++ /dev/null @@ -1,12 +0,0 @@ -# Mocha - Online Exploit - -## Browser Exploit {docsify-ignore} - -To install CFW, we first need to launch the Homebrew Launcher through the browser exploit. Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Homebrew Launcher!`. Your console should launch the Homebrew Launcher. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/mocha/online-exploit/launching-cfw.md b/translations/zh_TW/docs/user-guide/mocha/online-exploit/launching-cfw.md deleted file mode 100644 index f129e6474a0..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/online-exploit/launching-cfw.md +++ /dev/null @@ -1,15 +0,0 @@ -# Mocha - Online Exploit - -## Launching CFW {docsify-ignore} - -Now that you have your NAND backup in case anything goes wrong later, you can run CFW on your system. - -Unlike systems such as the DSi, Wii, or 3DS, Wii U CFW is temporary. This means that as soon as your system reboots, you will lose CFW and have to follow these instructions again. This can be skipped by installing CBHC to a Haxchi CFW installation. - -### Instructions {docsify-ignore} - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Launch the Homebrew Launcher on your system as [previously explained](browser-exploit). -1. Navigate the Homebrew Launcher and open the Mocha CFW app. -1. It will take you back to the Homebrew Launcher and enable CFW. -1. You will need to re-do these steps every reboot to launch CFW. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/mocha/online-exploit/nand-backup.md b/translations/zh_TW/docs/user-guide/mocha/online-exploit/nand-backup.md deleted file mode 100644 index adcbfaf3ae5..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/online-exploit/nand-backup.md +++ /dev/null @@ -1,23 +0,0 @@ -# Mocha - Online Exploit - -## Making a NAND Backup {docsify-ignore} - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions {docsify-ignore} - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate through the Homebrew Launcher and launch the `Wii U NAND Dumper` app. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` and if you chose to go with a full backup, `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/mocha/online-exploit/sd-preparation.md b/translations/zh_TW/docs/user-guide/mocha/online-exploit/sd-preparation.md deleted file mode 100644 index a95cf76426b..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/online-exploit/sd-preparation.md +++ /dev/null @@ -1,55 +0,0 @@ -# Mocha - Online Exploit - -## SD Preparation {docsify-ignore} - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -### What You Need {docsify-ignore} - -- The Mocha config. -- The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). - - You will need to download the `payload.zip` file. -- The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4). - - You will need to download the v1.4 `homebrew_launcher.v1.4.zip` release of The Homebrew Launcher. -- The latest release of [WUP Installer GX2](https://wiiubru.com/appstore/zips/wup_installer_gx2.zip). -- The latest release of [Wii U NAND Dumper](https://wiiubru.com/appstore/zips/nanddumper.zip). -- The latest release of the [Homebrew App Store](https://github.com/vgmoose/hbas/releases/latest). - - You will need to download the `wiiu-extracttosd.zip` file. -- The latest release of [Mocha](https://wiiubru.com/appstore/zips/mocha.zip). -- The latest release of SaveMii Mod. - -### Instructions {docsify-ignore} - -?> **Notice** The info.json and manifest.install files are not needed for the modding process and therefore can be deleted. - -1. Insert your Wii U's SD Card into your PC. -1. Copy the contents of the `wup_installer_gx2.zip` file to the root of your SD Card. -1. Copy the contents of the `nanddumper.zip` file to the root of your SD Card. -1. Copy the contents of the `wiiu-extracttosd.zip` file to the root of your SD Card. -1. Copy the contents of the `homebrew_launcher.v.1.4.zip` file to the root of your SD Card. -1. Copy the contents of the `mocha.zip` file to the root of your SD Card. -1. Copy the contents of the `savemii_mod.zip` file to the root of your SD Card. -1. Copy the `config.ini` file to the `/wiiu/apps/mocha` folder on your SD Card. -1. Copy the `payload.elf` from the `payload.zip` to the `wiiu` folder on your SD Card. ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┗ 📂wiiu - ┣ 📂apps - ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┗ 📜meta.xml - ┃ ┗ (All other apps like disc2app, nanddumper, etc. should be here too) - ┗ 📜payload.elf -``` - -
diff --git a/translations/zh_TW/docs/user-guide/mocha/online-exploit/sidebar.md b/translations/zh_TW/docs/user-guide/mocha/online-exploit/sidebar.md deleted file mode 100644 index a5fc996f852..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/online-exploit/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Mocha - Online Exploit** -- [Home Page](../../introduction) -- [Choose a CFW](../../cfw-choice) -- [Choose an Entrypoint](../entrypoint-choice) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Launching CFW](launching-cfw) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../../donations) -- [About](../../about) \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/mocha/sidebar.md b/translations/zh_TW/docs/user-guide/mocha/sidebar.md deleted file mode 100644 index 6aaae93e563..00000000000 --- a/translations/zh_TW/docs/user-guide/mocha/sidebar.md +++ /dev/null @@ -1,10 +0,0 @@ -- **Mocha** -- [Home Page](../introduction) -- [Choose a CFW](../cfw-choice) -- [Choose an Entrypoint](entrypoint-choice) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/tiramisu/autoboot.md b/translations/zh_TW/docs/user-guide/tiramisu/autoboot.md deleted file mode 100644 index de54edd0109..00000000000 --- a/translations/zh_TW/docs/user-guide/tiramisu/autoboot.md +++ /dev/null @@ -1,19 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Autobooting Tiramisu - -Currently, every time you want to launch Tiramisu you will have to launch the Health and Safety information app. If you wish to automatically launch into Tiramisu on every boot, you can autoboot the Health and Safety Information app. - -### Instructions - -1. Start the console to boot into the Wii U Menu, launch the Health and Safety Information app and hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press A to select `Check`. -1. Select `Boot options`. -1. You will be asked if you want to switch the boot title. Press A to select `Switch to PayloadLoader`. -1. When the process finished, press A to shutdown the console. -1. The PayloadLoader will now be launched automatically on every boot. - - To change the default boot title hold Start (+) on the Gamepad while booting the console. You cannot change the boot title until you set a default environment first. - - Navigate the list using the D-Pad to hover on the title you want to autoboot in, then press the Y button to set this to your autoboot title. - - Press A to launch the selected title. - diff --git a/translations/zh_TW/docs/user-guide/tiramisu/browser-exploit.md b/translations/zh_TW/docs/user-guide/tiramisu/browser-exploit.md deleted file mode 100644 index f4abfaa52c6..00000000000 --- a/translations/zh_TW/docs/user-guide/tiramisu/browser-exploit.md +++ /dev/null @@ -1,14 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Browser Exploit - -Make sure your Wii U has internet access for this step. - -### Instructions - -1. Take the SD Card out of your computer and plug it into your Wii U console. -1. Launch the Internet Browser and navigate to the website `wiiuexploit.xyz`. -1. Click on `Run Exploit!` and hold the B button until you see a screen that says `Please choose your payload:`, this will be necessary for the next steps. - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - If you see the EnvironmentLoader, you did not hold down B long enough. Try again. - diff --git a/translations/zh_TW/docs/user-guide/tiramisu/finalizing-setup.md b/translations/zh_TW/docs/user-guide/tiramisu/finalizing-setup.md deleted file mode 100644 index 6a7774760b2..00000000000 --- a/translations/zh_TW/docs/user-guide/tiramisu/finalizing-setup.md +++ /dev/null @@ -1,48 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Finalizing Setup - -Now that PayloadLoader, Environment Loader and Tiramisu are installed, we are going to finalize the setup. - -We are going to make the Tiramisu environment start automatically when your console autoboots the Health and Safety Information app (or when manually launching it if you chose not to autoboot it) and select Wii U Menu as default as well as getting additional homebrew apps. - -### Setting up PayloadLoader, Environment Loader and Tiramisu - -1. Turn on your Wii U. - - The Environment Loader should show up. -1. Using the D-Pad, navigate to `tiramisu` and press Y to set this to your default environment, then press A to launch into Tiramisu. - - You might get a red warning screen telling you that updates aren't blocked properly. Press A to continue anyway. We're going to block updates in the "Blocking Updates" section below. - - To open the Environment Loader in the future, you have to hold X while your Wii U is booting up. -1. On the Tiramisu Boot Selector, the `Wii U Menu` should already be selected, press Y to set this to your default autobooting option, then press A to launch into the Wii U Menu. - - To open the Tiramisu Boot Selector in the future, you have hold START (+) while your Wii U is booting up. - -?> Once you're booted into the Tiramisu environment, you can open the Mii Maker at any time to get into the Homebrew Launcher.
Homebrew Launcher will be empty for first-time modders. Follow the rest of the guide to install apps into the Homebrew Launcher.
To get back into the Mii Maker, simply press the HOME button while in the Homebrew Launcher. - -### Blocking Updates -While Tiramisu's PayloadLoader already has built-in update blocking functionality, it is recommended to delete the update folder to effectively block system updates. If you get a red warning screen while booting into Tiramisu, the update folder still exists and it is recommended to delete it using [this guide](../block-updates). - -### Additional Homebrew Apps - -- **SaveMii Mod WUT Port** is a homebrew app that lets you manage your Wii U and vWii save data. -- **Bloopair** is a Tiramisu module that lets you wirelessly connect most popular Bluetooth capable controllers. See [this page](https://gbatemp.net/threads/bloopair-connect-controllers-from-other-consoles-natively.594289/) for more details. -- The **Homebrew Appstore** lets you browse and download homebrew apps directly from your Wii U. - -### Additional Homebrew Apps - What You Need - -- The latest version of [SaveMii Mod WUT Port](https://wiiubru.com/appstore/zips/SaveMiiModWUTPort.zip). -- The latest version of [Bloopair](https://github.com/GaryOderNichts/Bloopair/releases). -- `wiiu-extracttosd.zip` of the [HB Appstore](https://github.com/fortheusers/hb-appstore/releases/). - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Copy the contents of the newly downloaded `SaveMiiModWUTPort.zip` file to the root of your SD Card. -1. Extract the contents of the newly downloaded `Bloopair_vX.X.X.zip` file. - Copy the `30_bloopair.rpx` to the `wiiu/environments/tiramisu/modules/setup/` folder on the root of your SD Card. - Copy the `wiiu` folder to the root of your SD Card. -1. Copy the contents of the newly downloaded `wiiu-extracttosd.zip` file to the root of your SD Card. - -### Installing Aroma -Aroma is a work-in-progress environment with support for plugins, modules and homebrew bundles. -Aroma can be installed additionally to Tiramisu, if you want to try out any of its features. - -[**The Aroma guide can be found here**](../aroma/getting-started) diff --git a/translations/zh_TW/docs/user-guide/tiramisu/installing-payloadloader.md b/translations/zh_TW/docs/user-guide/tiramisu/installing-payloadloader.md deleted file mode 100644 index 2598bb73a18..00000000000 --- a/translations/zh_TW/docs/user-guide/tiramisu/installing-payloadloader.md +++ /dev/null @@ -1,24 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Installing PayloadLoader - -Now that you have your NAND backup in case anything goes wrong later, you can install the PayloadLoader on your system. - -Installing the PayloadLoader will let you access Tiramisu just by running the Health and Safety Information app. - -!> A factory reset **won't** uninstall the injected PayloadLoader. Follow [uninstall PayloadLoader](../../uninstall-payloadloader) to remove the PayloadLoader. - -### Instructions - -?> If you're already booted into Tiramisu, restart your console before executing the browser exploit again. - -1. Take the SD Card out of your PC and plug it into your Wii U. -1. Execute the web browser exploit as [previously explained](browser-exploit) but this time, you will need to hold the X button to open the Environment Loader menu. -1. Navigate the list using the D-Pad and navigate to the `installer` environment, press A to launch it. -1. Press the A button to check if you can install the PayloadLoader. - - It should now tell you that the PayloadLoader can be installed onto the Health and Safety Information app. -1. Press the A button to select `Install / Update`. -1. You'll be asked if you are sure you want to install the PayloadLoader. Use the D-Pad to select `Install` and press A. -1. After installing finishes, press A to shut down the console. - -!> If you do not wish to autoboot Tiramisu on your console, you can skip the `Autobooting Tiramisu` part and head directly to [Finalizing Setup](finalizing-setup). \ No newline at end of file diff --git a/translations/zh_TW/docs/user-guide/tiramisu/nand-backup.md b/translations/zh_TW/docs/user-guide/tiramisu/nand-backup.md deleted file mode 100644 index 5eae902923c..00000000000 --- a/translations/zh_TW/docs/user-guide/tiramisu/nand-backup.md +++ /dev/null @@ -1,26 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## Making a NAND Backup - -In case anything should go wrong in the later process and your Wii U ends up bricked, restoring a previously made NAND backup can fix it. - -### Instructions - -?> The Wii U NAND is (depending on your model) either 8GB or 32GB. As a result of this, to create a full backup of your console's NAND, your SD Card has to be larger than the size of your NAND. If you do not have a large enough SD Card, you can skip the optional `MLC` section which includes save files and game data and is not needed to recover most types of bricks. - -?> Restoring a NAND Backup on the Wii U requires additional hardware and micro soldering skills.
However, making a NAND Backup is **always** useful, so please do not skip it.
Your NAND Backup is unique to your system. Backups from other consoles **won't** work. - -1. Navigate to `nanddumper` using the GamePad and press A to launch it. -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **yes** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **yes** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. The files will appear on the root of the SD card. -1. To make sure you don't lose the files, copy the `slc.bin`, `slccmpt.bin`, `seeprom.bin`, `otp.bin` (and if you chose to go with a full backup, `every mlc.bin.part`) file to your computer. -1. Delete the files from your SD Card to free up space. - -?> **If the PayloadLoader is already installed into the Health and Safety Information app and your console is already autobooting it, you do not need to continue following the guide.** diff --git a/translations/zh_TW/docs/user-guide/tiramisu/sd-preparation.md b/translations/zh_TW/docs/user-guide/tiramisu/sd-preparation.md deleted file mode 100644 index 68072967c16..00000000000 --- a/translations/zh_TW/docs/user-guide/tiramisu/sd-preparation.md +++ /dev/null @@ -1,71 +0,0 @@ -# Tiramisu {docsify-ignore-all} - -## SD Preparation - -We will now place the required CFW files and some additional homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) allocation unit size to format it.
**Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> **If you have an existing legacy CFW setup**
For **CBHC** users: go to the [Uninstall CBHC](../uninstall-cbhc) page to uninstall CBHC.
For **Haxchi** users: uninstall the Haxchi app from Data Management in the System Settings app.
For **Mocha CFW (Indexiine)** users: go to the [Uninstall Indexiine](../uninstall-indexiine) page to uninstall Indexiine.
For **Mocha CFW (Online Exploit)** users: you do not need to do anything before following this guide. - -### What You Need - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. -- The latest release of the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU/releases). - - You will need to download the `01_sigpatches.rpx` file. - -### Instructions - -1. Insert your Wii U's SD Card into your PC. -1. **Extract** and copy the contents of the newly downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `01_sigpatches.rpx` file to `/wiiu/environments/tiramisu/modules/setup` on your SD Card. - -?> If your computer asks you to overwrite existing files on your SD Card, you will need to click yes. - - If you're using a Mac, you have to select `Merge` instead of replace. - ----------- - -### SD Card Layout {docsify-ignore} - -
-Click here to show the final SD Card layout. - -``` -💾sd: - ┣ 📂wiiu - ┃ ┣ 📂apps - ┃ ┃ ┣ 📂homebrew_launcher - ┃ ┃ ┃ ┣ 📜homebrew_launcher.elf - ┃ ┃ ┃ ┣ 📜icon.png - ┃ ┃ ┃ ┗ 📜meta.xml - ┃ ┃ ┣ 📜PayloadLoaderInstaller.wuhb - ┃ ┃ ┗ (All other apps should be here too) - ┃ ┣ 📂environments - ┃ ┃ ┣ 📂installer - ┃ ┃ ┃ ┗ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┗ 📜90_launch_installer.rpx - ┃ ┃ ┗ 📂tiramisu - ┃ ┃ ┣ 📂modules - ┃ ┃ ┃ ┗ 📂setup - ┃ ┃ ┃ ┣ 📜00_mocha.rpx - ┃ ┃ ┃ ┣ 📜01_sigpatches.rpx - ┃ ┃ ┃ ┣ 📜50_hbl_installer.rpx - ┃ ┃ ┃ ┗ 📜99_autoboot.rpx - ┃ ┃ ┗ 📜root.rpx - ┃ ┣ 📂payloads - ┃ ┃ ┣ 📂default - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┣ 📂fw_img_loader - ┃ ┃ ┃ ┗ 📜payload.elf - ┃ ┃ ┗ 📂nanddumper - ┃ ┃ ┗ 📜payload.elf - ┃ ┣ 📜payload.rpx - ┃ ┗ 📜payload.elf - ┗ 📜versions.json -``` - -
diff --git a/translations/zh_TW/docs/user-guide/tiramisu/sidebar.md b/translations/zh_TW/docs/user-guide/tiramisu/sidebar.md deleted file mode 100644 index 8d4351c1fa6..00000000000 --- a/translations/zh_TW/docs/user-guide/tiramisu/sidebar.md +++ /dev/null @@ -1,14 +0,0 @@ -- **Tiramisu** -- [Home Page](../introduction) -- [SD Preparation](sd-preparation) -- [Browser Exploit](browser-exploit) -- [Making a NAND Backup](nand-backup) -- [Installing the PayloadLoader](installing-payloadloader) -- [Autobooting Tiramisu](autobooting) -- [Finalizing Setup](finalizing-setup) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/zh_TW/docs/user-guide/vwii/browser-exploit.md b/translations/zh_TW/docs/user-guide/vwii/browser-exploit.md deleted file mode 100644 index 787672b5ac3..00000000000 --- a/translations/zh_TW/docs/user-guide/vwii/browser-exploit.md +++ /dev/null @@ -1,17 +0,0 @@ -# Launching an Exploit ---- -To install the Homebrew Channel, we first need to create a NAND backup and be able to launch the Homebrew Launcher through an exploit, such as the Browser Exploit. - -Make sure your Wii U has internet access for this step. - -### Instructions {docsify-ignore} - -1. Launch an exploit of your choice: - - If you've never run homebrew before, "launching the exploit" means run the Browser Exploit. To run the Browser Exploit launch the Internet Browser and navigate to the website `wiiuexploit.xyz`, then click on `Run Exploit!` - - If your Wii U gets stuck on a white or otherwise frozen screen, wait a few seconds. If nothing happens, reboot the console, [reset the browser's save data](https://en-americas-support.nintendo.com/app/answers/detail/a_id/1507/~/how-to-delete-the-internet-browser-history) and try again. - - - If you're coldbooting into the PayloadLoader, "launching the exploit" means booting your console. - - - If you're launching into the PayloadLoader via the Health & Safety application, "launching the exploit" means launching the Health & Safety Application. - -1. While launching the exploit of your choice, hold either the B button (if you're following the `NAND Backup` section) or the X button (if you're following the `Installing the Homebrew Channel` section). diff --git a/translations/zh_TW/docs/user-guide/vwii/finalizing-setup.md b/translations/zh_TW/docs/user-guide/vwii/finalizing-setup.md deleted file mode 100644 index 5b914b36ff1..00000000000 --- a/translations/zh_TW/docs/user-guide/vwii/finalizing-setup.md +++ /dev/null @@ -1,33 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Finalizing Setup - -Now that the required cIOSes and IOS80 patch have been applied, we are now going to finalize the setup. - -### Additional Homebrew Apps - -- **SaveGame Manager GX** allows you to backup and restore your saves and Miis, especially saves that can't usually be copied. -- **Nintendont** is a virtual machine that allows you to play Gamecube games. -- The **Open Shop Channel** is an appstore where you can download more apps. - -### Additional Homebrew Apps - What You Need - -- The latest release of [SaveGame Manager GX](https://hbb1.oscwii.org/api/v3/contents/SaveGame_Manager_GX/SaveGame_Manager_GX.zip) -- The `loader.dol`, `meta.xml` and `icon.png` of [Nintendont](https://github.com/GaryOderNichts/Nintendont) -- The `Homebrew Browser.zip` of the [Open Shop Channel](https://hbb1.oscwii.org/api/v3/contents/homebrew_browser/homebrew_browser.zip) - -### Additional Homebrew Apps - Extracting Files to the SD Card - -1. Extract and copy the contents of `SaveGame_Manager_GX.zip` to the root of the SD card. -2. Follow the instructions in the link for copying Nintendont, scrolling down. -3. Extract the contents of the `homebrew_browser.zip` to the root of the SD card. - -### USB Loaders - -In order to play Wii game backups, you will need a USB loader. There are two popular loaders called WiiFlow Lite and USB Loader GX. Both can be found on [this site](https://wii.hacks.guide/wii-loaders). - -### Installing Priiloader - -Yes, Priiloader now works on vWii! The guide for installing it can be found [here](https://wii.hacks.guide/priiloader). - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii. diff --git a/translations/zh_TW/docs/user-guide/vwii/installing-cioses.md b/translations/zh_TW/docs/user-guide/vwii/installing-cioses.md deleted file mode 100644 index d05c433152f..00000000000 --- a/translations/zh_TW/docs/user-guide/vwii/installing-cioses.md +++ /dev/null @@ -1,25 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing cIOSes - -1. Power on your Wii U and launch vWii. -2. Launch The Homebrew Channel. -3. Launch d2x cIOS Installer. -4. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -5. Press the `A` button to install. -6. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -7. Press the `A` button to install. -8. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -9. Press the `A` button to install. -10. Press the `B` button to exit. - -!> If you are only getting `d2x-v6` or `d2x-v11-beta1`, redownload the app and/or make sure your SD card is unlocked. diff --git a/translations/zh_TW/docs/user-guide/vwii/installing-homebrewchannel.md b/translations/zh_TW/docs/user-guide/vwii/installing-homebrewchannel.md deleted file mode 100644 index b88913dfdcc..00000000000 --- a/translations/zh_TW/docs/user-guide/vwii/installing-homebrewchannel.md +++ /dev/null @@ -1,9 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Installing the Homebrew Channel - -1. Boot into [Aroma](browser-exploit). -2. Launch the `vWii Compat Installer` from the Wii U Menu. -3. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -4. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. diff --git a/translations/zh_TW/docs/user-guide/vwii/nand-backup.md b/translations/zh_TW/docs/user-guide/vwii/nand-backup.md deleted file mode 100644 index edd6744db07..00000000000 --- a/translations/zh_TW/docs/user-guide/vwii/nand-backup.md +++ /dev/null @@ -1,20 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it, or you can completely [reinstall the vWii](http://wiiu.hacks.guide/#/recover-vwii-ioses-channels). - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](browser-exploit). -2. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -3. Press the A button to start the dumping process. -4. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -5. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files (and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file) to your computer. -6. Delete the files from your SD Card to free up space. -7. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/zh_TW/docs/user-guide/vwii/patching-ios80.md b/translations/zh_TW/docs/user-guide/vwii/patching-ios80.md deleted file mode 100644 index 70cea191fc2..00000000000 --- a/translations/zh_TW/docs/user-guide/vwii/patching-ios80.md +++ /dev/null @@ -1,17 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - -## Patching IOS 80 (Optional) - -Patching IOS 80 allows you to have custom channels on the SD card, including wads. However, it is not required. - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](../../recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -2. Read the warning screen and wait 30 seconds. -3. Press any buttons to install. -4. Wait until it says IOS80 Installation is complete!. -5. Press any button to exit. - -!> Installing a custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. WiiWare wads are fine, but some need to be converted to work. diff --git a/translations/zh_TW/docs/user-guide/vwii/sd-preparation.md b/translations/zh_TW/docs/user-guide/vwii/sd-preparation.md deleted file mode 100644 index 5383da60eae..00000000000 --- a/translations/zh_TW/docs/user-guide/vwii/sd-preparation.md +++ /dev/null @@ -1,35 +0,0 @@ -# vWii Modding Guide {docsify-ignore-all} - ---- - -## SD Preparations - -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** -Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - -?> Unlike Wii U homebrew, vWii apps go in a separate `apps` folder on the root. Compat Installer is the **only** Wii U app here. - -### What You Need - -- The latest files from [Aroma for your café](https://aroma.foryour.cafe). - - Click on `Download Payloads` and `Download Base Aroma`. - - Read through the steps and click on the checkboxes. - - If you have already installed Aroma, you do not need to redownload it. -- The latest release of the [Compat Title Installer](https://hbas-frontend.b-cdn.net/wiiu/CompatTitleInstaller). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -## Instructions - -1. Insert your Wii U's SD Card into your PC. -2. Copy the `apps` folder from the `Patched_IOS80_Installer_for_vWii.zip` file to the root of your SD Card. -3. Copy the `d2x-cios-installer` from the `d2x_cIOS_Installer.zip` file to the apps folder on the root of your SD Card. -4. Copy the contents of the downloaded Base Aroma and payloads `.zip` files to the root of your SD Card. -5. Copy the contents of the `CompatTitleInstaller.zip` file to the root of your SD Card. -6. Take the SD Card out of your computer and plug it into your Wii U console. diff --git a/translations/zh_TW/docs/user-guide/vwii/sidebar.md b/translations/zh_TW/docs/user-guide/vwii/sidebar.md deleted file mode 100644 index c4ba658c1d3..00000000000 --- a/translations/zh_TW/docs/user-guide/vwii/sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -**vWii Modding** -- [Home Page](../introduction) -- [Modding vWii](vwii-modding) -- **Links** -- [![GitHub](https://icongr.am/simple/github.svg?color=808080&size=16)GitHub](https://github.com/hacks-guide/Guide-WiiU) -- [![Discord](https://icongr.am/simple/discord.svg?colored&size=16)Discord](https://discord.gg/C29hYvh) -- [![Translate](https://icongr.am/material/translate.svg?color=808080&size=16)Translate](https://hacks-guide.crowdin.com/u/projects/10) -- [Donate](../donations) -- [About](../about) diff --git a/translations/zh_TW/docs/user-guide/vwii/vwii-modding.md b/translations/zh_TW/docs/user-guide/vwii/vwii-modding.md deleted file mode 100644 index c7bdad0146f..00000000000 --- a/translations/zh_TW/docs/user-guide/vwii/vwii-modding.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modding the vWii {docsify-ignore-all} - -The vWii guide has now been integrated into the [Wii Hacks Guide](https://wii.hacks.guide/get-started). You can head there for a more detailed guide on how to mod your vWii. - -The old modding guide has been archived. diff --git a/translations/zh_TW/docs/vwii/vwii-modding.md b/translations/zh_TW/docs/vwii/vwii-modding.md deleted file mode 100644 index 0b0e0d7d73c..00000000000 --- a/translations/zh_TW/docs/vwii/vwii-modding.md +++ /dev/null @@ -1,97 +0,0 @@ -# vWii Modding Guide ---- -This page will guide you through the process of modding your vWii. - -We will now start by placing the required Homebrew files on the SD Card. - -?> **Notice** Your SD Card will need to be formatted as FAT32. If your SD Card is not formatted to FAT32, use [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm) with 32k (32768) Allocation unit size to format it. **Do not** label the SD Card as `wiiu` or it will cause issues with homebrew. - -?> If you have hacked your Wii U in the past, you can use the same SD Card for this process. - - - -### What You Need {docsify-ignore} - -- The latest files from [Tiramisu for your café](https://tiramisu.foryour.cafe). - - Click on `Download Tiramisu`. - - If you have already installed Tiramisu, you do not need to redownload it. -- The latest release of the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer/releases). -- The Patched IOS 80 Installer for vWii. ([Source](https://github.com/Lazr1026/Patched-IOS80-Installer-for-vWii)) -- The d2x cIOS Installer. - -### SD Preparations {docsify-ignore} - -1. Insert your Wii U's SD Card into your PC. -1. Copy the `apps` folder from the Patched_IOS80_Installer_for_vWii.zip file to the root of your SD Card. -1. Copy the `d2x-cios-installer` from the d2x_cIOS_Installer.zip file to the apps folder on your SD Card. -1. Copy the contents of the downloaded Tiramisu *`.zip`* file to the root of your SD Card. -1. Copy the `compat_installer.elf` file to the `wiiu/apps` folder on the root of your SD Card. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### NAND Backup - -In case anything goes wrong in the later process and your vWii ends up bricked, restoring a previously made NAND backup can fix it. - -?> If you have recently made a NAND backup that includes SLCCMPT and OTP, feel free to skip this step. - -1. Launch the [Wii U NAND Dumper](vwii/browser-exploit). -1. Use the Wii U GamePad's D-Pad to enter the following configuration: - - Dump SLC: **optional** - - Dump SLCCMPT: **yes** - - Dump MLC: **optional** - - Dump OTP: **yes** - - Dump SEEPROM: **optional** -1. Press the A button to start the dumping process. -1. When the process completed, power off your Wii U, take your SD Card out of the Wii U and plug it into your PC. -1. To make sure you don't lose the files, copy the `slccmpt.bin` and `otp.bin` files, and if you chose to go with a full backup, `seeprom.bin`, `slc.bin`, and `every mlc.bin.part` file to your computer. -1. Delete the files from your SD Card to free up space. -1. Take the SD Card out of your computer and plug it into your Wii U console. - -### Installing the Homebrew Channel - -1. Boot into [Tiramisu](vwii/browser-exploit). -1. Launch the Homebrew Launcher, by opening the Mii Maker. -1. Launch the compat_installer. -1. Press `A` to install the Homebrew Channel and wait until you see `Install succeeded`. Then press the HOME button to return to the Wii U Menu. -1. Launch vWii (the Wii Menu icon). - - If the installation has succeeded, you should see the Homebrew Channel in your Wii Menu. - -### Installing cIOSes - -!> Make sure you have no `.wad` files anywhere else than in the `apps` folder on your SD Card. - -1. Power on your Wii U and launch vWii. -1. Launch The Homebrew Channel. -1. Launch d2x cIOS Installer. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `56` - - Select cIOS slot: `249` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `57` - - Select cIOS slot: `250` -1. Press the `A` button to install. -1. Set everything to match the following: - - Select cIOS: `d2x-v11-beta1-vWii` - - Select cIOS base: `58` - - Select cIOS slot: `251` -1. Press the `A` button to install. -1. Press the `B` button to exit. - -### Patching IOS 80 - -!> If for any reason, the Wii U is turned off while patching IOS 80, your vWii will be bricked. This can be fixed by either extracting the IOS 80 from your previously made NAND backup and then replacing it over FTP or by [reinstalling IOS 80](recover-vwii-ioses-channels). - -1. Launch Patched IOS 80 Installer for vWii. -1. Read the warning screen and wait 30 seconds. -1. Press any buttons to install. -1. Wait until it says IOS80 Installation is complete!. -1. Press any button to exit. - -!> Installing custom System Menu is a definite brick risk and you should always have an effective backup before installing one but when done right, won't brick the vWii. - -!> Installing any IOS (including TED IOSes) or wads made for the original Wii on your vWii will brick it. - -!> Priiloader versions before 0.10.0 do not work with vWii. Priiloader versions before 0.8.2 will brick your vWii.